diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 4c18fa5dc78..1626a471e03 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.35.1 + +- Update to `p256` `v0.11.0`. See [PR 2636]. + +[PR 2636]: https://github.com/libp2p/rust-libp2p/pull/2636/ + # 0.35.0 - Drop `Unpin` requirement from `SubstreamBox`. See [PR 2762] and [PR 2776]. diff --git a/core/Cargo.toml b/core/Cargo.toml index f0197b675d0..d20934adf1e 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-core" edition = "2021" rust-version = "1.56.1" description = "Core traits and structs of libp2p" -version = "0.35.0" +version = "0.35.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -25,7 +25,7 @@ log = "0.4" multiaddr = { version = "0.14.0" } multihash = { version = "0.16", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] } multistream-select = { version = "0.11", path = "../misc/multistream-select" } -p256 = { version = "0.10.0", default-features = false, features = ["ecdsa"], optional = true } +p256 = { version = "0.11.1", default-features = false, features = ["ecdsa"], optional = true } parking_lot = "0.12.0" pin-project = "1.0.0" prost = "0.11"