Bump nightly
This commit is contained in:
parent
0163ff6a26
commit
7d26aeb795
|
@ -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=""
|
||||||
|
|
|
@ -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
|
||||||
|
|
2
build.rs
2
build.rs
|
@ -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.
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
nightly-2017-07-13
|
nightly-2017-07-21
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue