diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e7dff9..556e82e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [0.11.0] - 2023-10-11 ### Removals @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changes * Updated `x25519-dalek` to 2.0 +* Updated `subtle` to 2.5 ## [0.10.0] - 2022-10-01 diff --git a/Cargo.toml b/Cargo.toml index ada7b00..35eb05b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ repository = "https://github.com/rozbb/rust-hpke" documentation = "https://docs.rs/rust-hpke" description = "An implementation of the HPKE hybrid encryption standard (RFC 9180) in pure Rust" readme = "README.md" -version = "0.10.0" +version = "0.11.0" authors = ["Michael Rosenberg "] edition = "2021" license = "MIT/Apache-2.0" @@ -40,7 +40,7 @@ p256 = { version = "0.13", default-features = false, features = ["arithmetic", " p384 = { version = "0.13", default-features = false, features = ["arithmetic", "ecdh"], optional = true} sha2 = { version = "0.10", default-features = false } serde = { version = "1.0", default-features = false, optional = true } -subtle = { version = "2.4", default-features = false } +subtle = { version = "2.5", default-features = false } x25519-dalek = { version = "2", default-features = false, features = ["static_secrets"], optional = true } zeroize = { version = "1", default-features = false, features = ["zeroize_derive"] }