fix(identity): bump version

In https://github.com/libp2p/rust-libp2p/pull/4107, we forgot to bump the version of `libp2p-identity`.

Pull-Request: #4125.


  
Co-Authored-By: Thomas Eizinger <thomas@eizinger.io>
This commit is contained in:
Thomas Eizinger
2023-06-27 10:13:34 +02:00
committed by GitHub
parent 93aa21aba9
commit 5c362fcab1
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@@ -2734,7 +2734,7 @@ dependencies = [
[[package]]
name = "libp2p-identity"
version = "0.2.0"
version = "0.2.1"
dependencies = [
"asn1_der",
"base64 0.21.2",

View File

@@ -72,7 +72,7 @@ libp2p-dns = { version = "0.40.0", path = "transports/dns" }
libp2p-floodsub = { version = "0.43.0", path = "protocols/floodsub" }
libp2p-gossipsub = { version = "0.45.0", path = "protocols/gossipsub" }
libp2p-identify = { version = "0.43.0", path = "protocols/identify" }
libp2p-identity = { version = "0.2.0" }
libp2p-identity = { version = "0.2.1" }
libp2p-kad = { version = "0.44.1", path = "protocols/kad" }
libp2p-mdns = { version = "0.44.0", path = "protocols/mdns" }
libp2p-metrics = { version = "0.13.0", path = "misc/metrics" }

View File

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