Bump nightly

This commit is contained in:
Yong Wen Chua 2017-07-21 14:23:21 +08:00
parent 0163ff6a26
commit 7d26aeb795
5 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
sudo: false sudo: false
language: rust language: rust
rust: rust:
- nightly-2017-07-13 - nightly-2017-07-21
addons: addons:
apt: apt:
packages: packages:
@ -16,9 +16,9 @@ script:
- | - |
travis-cargo build -- --all-features --all && travis-cargo build -- --all-features --all &&
travis-cargo test -- --all-features --all && travis-cargo test -- --all-features --all &&
travis-cargo --only nightly-2017-07-13 doc -- --no-deps --all-features --all travis-cargo --only nightly-2017-07-21 doc -- --no-deps --all-features --all
after_success: after_success:
- travis-cargo --only nightly-2017-07-13 doc-upload - travis-cargo --only nightly-2017-07-21 doc-upload
env: env:
global: global:
- TRAVIS_CARGO_NIGHTLY_FEATURE="" - TRAVIS_CARGO_NIGHTLY_FEATURE=""

View File

@ -21,7 +21,7 @@ Rocket requires nightly Rust. You should probably install Rust with
See See
[installation instructions](https://rocket.rs/guide/getting-started/#installing-rust). [installation instructions](https://rocket.rs/guide/getting-started/#installing-rust).
In particular, `rocket_cors` is currently targetted for `nightly-2017-07-13`. Newer nightlies In particular, `rocket_cors` is currently targetted for `nightly-2017-07-21`. Newer nightlies
might work, but it's not guaranteed. might work, but it's not guaranteed.
## Installation ## Installation

View File

@ -11,7 +11,7 @@ use version_check::{is_nightly, is_min_version, is_min_date};
// Specifies the minimum nightly version that is targetted // Specifies the minimum nightly version that is targetted
// Note that sometimes the `rustc` date might be older than the nightly version, // Note that sometimes the `rustc` date might be older than the nightly version,
// usually one day older // usually one day older
const MIN_DATE: &'static str = "2017-07-12"; const MIN_DATE: &'static str = "2017-07-20";
const MIN_VERSION: &'static str = "1.20.0-nightly"; const MIN_VERSION: &'static str = "1.20.0-nightly";
// Convenience macro for writing to stderr. // Convenience macro for writing to stderr.

View File

@ -1 +1 @@
nightly-2017-07-13 nightly-2017-07-21

View File

@ -19,7 +19,7 @@
//! stable. See //! stable. See
//! [installation instructions](https://rocket.rs/guide/getting-started/#installing-rust). //! [installation instructions](https://rocket.rs/guide/getting-started/#installing-rust).
//! //!
//! In particular, `rocket_cors` is currently targetted for `nightly-2017-07-13`. Newer nightlies //! In particular, `rocket_cors` is currently targetted for `nightly-2017-07-21`. Newer nightlies
//! might work, but it's not guaranteed. //! might work, but it's not guaranteed.
//! //!
//! ## Installation //! ## Installation