From f4c1ec7d45c1859abd3e0184d927ecd23219a4c4 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Fri, 10 Nov 2023 18:06:59 +0100 Subject: [PATCH] Fix changelog and version --- Cargo.lock | 2 +- Cargo.toml | 2 +- misc/metrics/CHANGELOG.md | 9 ++++++--- misc/metrics/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3925f931c44..4622790ff63 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2803,7 +2803,7 @@ dependencies = [ [[package]] name = "libp2p-metrics" -version = "0.14.0" +version = "0.14.1" dependencies = [ "futures", "instant", diff --git a/Cargo.toml b/Cargo.toml index 8cca83152ed..dda224934c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,7 +85,7 @@ libp2p-identity = { version = "0.2.7" } libp2p-kad = { version = "0.45.1", path = "protocols/kad" } libp2p-mdns = { version = "0.45.0", path = "protocols/mdns" } libp2p-memory-connection-limits = { version = "0.2.0", path = "misc/memory-connection-limits" } -libp2p-metrics = { version = "0.14.0", path = "misc/metrics" } +libp2p-metrics = { version = "0.14.1", path = "misc/metrics" } libp2p-mplex = { version = "0.41.0", path = "muxers/mplex" } libp2p-muxer-test-harness = { path = "muxers/test-harness" } libp2p-noise = { version = "0.44.0", path = "transports/noise" } diff --git a/misc/metrics/CHANGELOG.md b/misc/metrics/CHANGELOG.md index 445a4a886a1..6086d579c04 100644 --- a/misc/metrics/CHANGELOG.md +++ b/misc/metrics/CHANGELOG.md @@ -1,11 +1,14 @@ -## 0.14.0 +## 0.14.1 - unreleased -- Add metrics for `SwarmEvent::{NewExternalAddrCandidate,ExternalAddrConfirmed,ExternalAddrExpired}`. - See [PR 4721](https://github.com/libp2p/rust-libp2p/pull/4721). - Add `BandwidthTransport`, wrapping an existing `Transport`, exposing Prometheus bandwidth metrics. See also `SwarmBuilder::with_bandwidth_metrics`. See [PR 4727](https://github.com/libp2p/rust-libp2p/pull/4727). +## 0.14.0 + +- Add metrics for `SwarmEvent::{NewExternalAddrCandidate,ExternalAddrConfirmed,ExternalAddrExpired}`. + See [PR 4721](https://github.com/libp2p/rust-libp2p/pull/4721). + ## 0.13.1 - Enable gossipsub related data-type fields when compiling for wasm. diff --git a/misc/metrics/Cargo.toml b/misc/metrics/Cargo.toml index c2b023db999..0607808214c 100644 --- a/misc/metrics/Cargo.toml +++ b/misc/metrics/Cargo.toml @@ -3,7 +3,7 @@ name = "libp2p-metrics" edition = "2021" rust-version = { workspace = true } description = "Metrics for libp2p" -version = "0.14.0" +version = "0.14.1" authors = ["Max Inden "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p"