diff --git a/Cargo.toml b/Cargo.toml index f2dfd220..ad31f1f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cookie" -version = "0.17.0" +version = "0.18.0-rc.0" authors = ["Sergio Benitez ", "Alex Crichton "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index d72964ca..74970031 100644 --- a/README.md +++ b/README.md @@ -12,30 +12,28 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -cookie = "0.17" +cookie = "0.18" ``` See the [documentation](http://docs.rs/cookie) for detailed usage information. -# MSRV +# Minimum Supported Rust Version (MSRV) -The minimum supported `rustc` version for `cookie` `0.17` is `1.53`. - -The minimum supported `rustc` version for `cookie` `0.16` is `1.53`. - -The minimum supported `rustc` version for `cookie` `0.15` is `1.41`. +| Version Range | MSRV | +|----------------------------------|--------------| +| `cookie` `==` `0.18` | `rustc 1.56` | +| `0.16` `<=` `cookie` `<=` `0.17` | `rustc 1.53` | +| `cookie` `<=` `0.15` | `rustc 1.41` | # License -This project is licensed under either of +This project is licensed under your option of either of the following: * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) -at your option. - ### Contribution Unless you explicitly state otherwise, any contribution intentionally submitted diff --git a/src/lib.rs b/src/lib.rs index f68cca54..640a45ef 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,7 +10,7 @@ //! Add the following to the `[dependencies]` section of your `Cargo.toml`: //! //! ```toml -//! cookie = "0.17" +//! cookie = "0.18" //! ``` //! //! # Features @@ -70,7 +70,6 @@ #![cfg_attr(all(nightly, doc), feature(doc_cfg))] -#![doc(html_root_url = "https://docs.rs/cookie/0.17")] #![deny(missing_docs)] pub use time;