about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-04-03 21:52:13 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-04-04 13:23:08 -0700
commitd250ec0bddf7ba84e34e893621234af3ebcfbca8 (patch)
tree1ac6a4ea8839768338f4c091bc35b20d82641b8f /src
parent58ac1c3563679b51f0e6dae1188cb635f1e89292 (diff)
downloadrust-d250ec0bddf7ba84e34e893621234af3ebcfbca8.tar.gz
rust-d250ec0bddf7ba84e34e893621234af3ebcfbca8.zip
Register new snapshots
Diffstat (limited to 'src')
-rw-r--r--src/libarena/lib.rs1
-rw-r--r--src/libcollections/lib.rs2
-rw-r--r--src/libgetopts/lib.rs2
-rw-r--r--src/libnative/lib.rs2
-rw-r--r--src/librand/lib.rs2
-rw-r--r--src/librustc/lib.rs3
-rw-r--r--src/libstd/lib.rs4
-rw-r--r--src/libsync/lib.rs4
-rw-r--r--src/libsyntax/lib.rs2
-rw-r--r--src/libterm/lib.rs4
-rw-r--r--src/snapshots.txt8
11 files changed, 11 insertions, 23 deletions
diff --git a/src/libarena/lib.rs b/src/libarena/lib.rs
index 17ab294a3f6..be42fab8b54 100644
--- a/src/libarena/lib.rs
+++ b/src/libarena/lib.rs
@@ -23,7 +23,6 @@
        html_favicon_url = "http://www.rust-lang.org/favicon.ico",
        html_root_url = "http://static.rust-lang.org/doc/master")]
 #![allow(missing_doc)]
-#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
 
 extern crate collections;
 
diff --git a/src/libcollections/lib.rs b/src/libcollections/lib.rs
index 84c440aa3a9..ef5289ae373 100644
--- a/src/libcollections/lib.rs
+++ b/src/libcollections/lib.rs
@@ -22,8 +22,6 @@
 
 #![feature(macro_rules, managed_boxes, default_type_params, phase)]
 
-#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
-
 extern crate rand;
 
 #[cfg(test)] extern crate test;
diff --git a/src/libgetopts/lib.rs b/src/libgetopts/lib.rs
index dfb91a477cb..9d4f2e2f8f0 100644
--- a/src/libgetopts/lib.rs
+++ b/src/libgetopts/lib.rs
@@ -87,8 +87,6 @@
 #![deny(missing_doc)]
 #![deny(deprecated_owned_vector)]
 
-#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
-
 #[cfg(test)] #[phase(syntax, link)] extern crate log;
 
 use std::cmp::Eq;
diff --git a/src/libnative/lib.rs b/src/libnative/lib.rs
index 8afbbda71c2..7e05c4c961c 100644
--- a/src/libnative/lib.rs
+++ b/src/libnative/lib.rs
@@ -51,8 +51,6 @@
 #![deny(unused_result, unused_must_use)]
 #![allow(non_camel_case_types)]
 
-#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
-
 // NB this crate explicitly does *not* allow glob imports, please seriously
 //    consider whether they're needed before adding that feature here (the
 //    answer is that you don't need them)
diff --git a/src/librand/lib.rs b/src/librand/lib.rs
index 8623e627e53..57b910093e0 100644
--- a/src/librand/lib.rs
+++ b/src/librand/lib.rs
@@ -71,8 +71,6 @@ println!("{:?}", tuple_ptr)
        html_root_url = "http://static.rust-lang.org/doc/master")]
 
 #![feature(macro_rules, managed_boxes, phase)]
-
-#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
 #![deny(deprecated_owned_vector)]
 
 #[cfg(test)]
diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs
index cf653f816ac..893cc019ca7 100644
--- a/src/librustc/lib.rs
+++ b/src/librustc/lib.rs
@@ -31,9 +31,6 @@ This API is completely unstable and subject to change.
 #![feature(macro_rules, globs, struct_variant, managed_boxes, quote,
            default_type_params, phase)]
 
-#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
-#![allow(unrecognized_lint)] // NOTE: remove after a stage0 snap
-
 extern crate flate;
 extern crate arena;
 extern crate syntax;
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index f4f5be4d37a..42d35b60896 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -57,9 +57,7 @@
 // Don't link to std. We are std.
 #![no_std]
 
-// #![deny(missing_doc)] // NOTE: uncomment after a stage0 snap
-#![allow(missing_doc)] // NOTE: remove after a stage0 snap
-#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
+#![deny(missing_doc)]
 #![allow(unknown_features)] // NOTE: remove after a stage0 snap
 
 // When testing libstd, bring in libuv as the I/O backend so tests can print
diff --git a/src/libsync/lib.rs b/src/libsync/lib.rs
index 7e7a6afc8ee..58bd837104c 100644
--- a/src/libsync/lib.rs
+++ b/src/libsync/lib.rs
@@ -22,9 +22,7 @@
 #![feature(phase)]
 #![deny(deprecated_owned_vector)]
 
-// #![deny(missing_doc)] // NOTE: uncomment after a stage0 snap
-#![allow(missing_doc)] // NOTE: remove after a stage0 snap
-#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
+#![deny(missing_doc)]
 
 #[cfg(test)]
 #[phase(syntax, link)] extern crate log;
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs
index 5570219bd8e..012bc50ecab 100644
--- a/src/libsyntax/lib.rs
+++ b/src/libsyntax/lib.rs
@@ -30,8 +30,6 @@ This API is completely unstable and subject to change.
            quote)]
 #![allow(deprecated)]
 
-#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
-
 extern crate serialize;
 extern crate term;
 extern crate collections;
diff --git a/src/libterm/lib.rs b/src/libterm/lib.rs
index 05104d5729f..a94a13aa017 100644
--- a/src/libterm/lib.rs
+++ b/src/libterm/lib.rs
@@ -21,9 +21,7 @@
 
 #![feature(macro_rules)]
 
-// #![deny(missing_doc)] // NOTE: uncomment after a stage0 snap
-#![allow(missing_doc)] // NOTE: remove after a stage0 snap
-#![allow(visible_private_types)] // NOTE: remove after a stage0 snap
+#![deny(missing_doc)]
 
 extern crate collections;
 
diff --git a/src/snapshots.txt b/src/snapshots.txt
index 59ea9834ed7..83a8e7bb965 100644
--- a/src/snapshots.txt
+++ b/src/snapshots.txt
@@ -1,3 +1,11 @@
+S 2014-04-03 e7fe207
+  freebsd-x86_64 6d40f547d13896ab9d9dd4a4fdf2e72be553b01b
+  linux-i386 875a8f6956f7d703f7206db91ca2a9b67c244cf8
+  linux-x86_64 4d90df12231d1c9f51b5ae6e75546ccddcf0534b
+  macos-i386 e5486efa1356abca8f8d5cac9aa6135c9626ab51
+  macos-x86_64 8341419e4295d780f72950cfe2187195d0d03e83
+  winnt-i386 60c2fb349ac8a7ad30c9ba2518a61e669debb7bf
+
 S 2014-03-28 b8601a3
   freebsd-x86_64 c6b0651b2a90697754920ad381c13f9b7942ab47
   linux-i386 3bef5684fd0582fbd4ddebd4514182d4f72924f7