chore(identity): release version 0.2.4

`libp2p-identity` gets a special treatment in our workspace because it is the only crate that is a dependency of crates _outside_ the workspace, in particular `multiaddr`. We however also depend on `multiaddr` again in the workspace. As a result, we need to use `[patch.crates-io]` to replace the `libp2p-identity` version across the entire dependency tree. This however doesn't work well with `cargo semver-checks` as it doesn't copy over `[patch]` sections into its workspace where it does the docs building.

To fix the semver checks error, we need to release a new version of `libp2p-identity`.

Pull-Request: #4583.
This commit is contained in:
Thomas Eizinger 2023-10-03 11:04:57 +11:00 committed by GitHub
parent ef1cd354d8
commit 60650d8b90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@ -2634,7 +2634,7 @@ dependencies = [
[[package]]
name = "libp2p-identity"
version = "0.2.3"
version = "0.2.4"
dependencies = [
"asn1_der",
"base64 0.21.4",

View File

@ -82,7 +82,7 @@ libp2p-dns = { version = "0.40.1", path = "transports/dns" }
libp2p-floodsub = { version = "0.43.0", path = "protocols/floodsub" }
libp2p-gossipsub = { version = "0.45.1", path = "protocols/gossipsub" }
libp2p-identify = { version = "0.43.1", path = "protocols/identify" }
libp2p-identity = { version = "0.2.3" }
libp2p-identity = { version = "0.2.4" }
libp2p-kad = { version = "0.44.6", path = "protocols/kad" }
libp2p-mdns = { version = "0.44.0", path = "protocols/mdns" }
libp2p-memory-connection-limits = { version = "0.1.0", path = "misc/memory-connection-limits" }

View File

@ -1,4 +1,4 @@
## 0.2.4 - unreleased
## 0.2.4
- Implement `Keypair::derive_secret`, to deterministically derive a new secret from the embedded secret key.
See [PR 4554].

View File

@ -1,6 +1,6 @@
[package]
name = "libp2p-identity"
version = "0.2.3"
version = "0.2.4"
edition = "2021"
description = "Data structures and algorithms for identifying peers in libp2p."
rust-version = { workspace = true }