Skip to content

Commit

Permalink
New version: 0.18.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioBenitez committed Mar 25, 2024
1 parent cf37d0a commit ba46fc5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Version 0.18

## Version 0.18.1 (Mar 25, 2024)

### New Features

* Added support for the draft `Partitioned` attribute.

The new `CookieBuilder::partition()`, `Cookie::partitioned()`, and
`Cookie::set_partitioned()` methods allow enabling and/or disabling the
attribute. Additionally, the attribute is recognized during parsing.

* Added `CookieBuilder::removal()`, counterpart to `Cookie::make_removal()`.

## Version 0.18.0 (Oct 9, 2023)

### Breaking Changes
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cookie"
version = "0.18.0"
version = "0.18.1"
authors = ["Sergio Benitez <[email protected]>", "Alex Crichton <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -28,7 +28,7 @@ percent-encoding = { version = "2.0", optional = true }
aes-gcm = { version = "0.10.0", optional = true }
hmac = { version = "0.12.0", optional = true }
sha2 = { version = "0.10.0", optional = true }
base64 = { version = "0.21.4", optional = true }
base64 = { version = "0.22", optional = true }
rand = { version = "0.8", optional = true }
hkdf = { version = "0.12.0", optional = true }
subtle = { version = "2.3", optional = true }
Expand Down

0 comments on commit ba46fc5

Please sign in to comment.