diff --git a/Cargo.toml b/Cargo.toml index 63c60fb7..f47ea96f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cookie" -version = "0.15.1" +version = "0.16.0-dev" authors = ["Sergio Benitez ", "Alex Crichton "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index 4d996b35..090b3d0b 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -cookie = "0.15" +cookie = "0.16" ``` See the [documentation](http://docs.rs/cookie) for detailed usage information. diff --git a/src/lib.rs b/src/lib.rs index 22936b55..ca4bb5f9 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.15" +//! cookie = "0.16" //! ``` //! //! Then add the following line to your crate root: @@ -76,7 +76,7 @@ #![cfg_attr(all(nightly, doc), feature(doc_cfg))] -#![doc(html_root_url = "https://docs.rs/cookie/0.15")] +#![doc(html_root_url = "https://docs.rs/cookie/0.16")] #![deny(missing_docs)] #[cfg(feature = "percent-encode")] extern crate percent_encoding;