Skip to content

Commit

Permalink
New version: 0.18.0-rc.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioBenitez committed Sep 27, 2023
1 parent 49ff7b0 commit cb84f3a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cookie"
version = "0.17.0"
version = "0.18.0-rc.0"
authors = ["Sergio Benitez <sb@sergio.bz>", "Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//! Add the following to the `[dependencies]` section of your `Cargo.toml`:
//!
//! ```toml
//! cookie = "0.17"
//! cookie = "0.18"
//! ```
//!
//! # Features
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit cb84f3a

Please sign in to comment.