From 8ebdf5027dfd0be27838e1bdbdc8cc95fe1cb93e Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Wed, 26 Nov 2025 10:19:15 +0000 Subject: [PATCH 1/3] cargo: Bump the version to 0.12.2 Signed-off-by: Alexandru Vasile --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4c48f584..451d6fa9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1846,7 +1846,7 @@ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" [[package]] name = "litep2p" -version = "0.12.1" +version = "0.12.2" dependencies = [ "async-trait", "bs58 0.5.1", diff --git a/Cargo.toml b/Cargo.toml index 2bdeecbd..a4eba588 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "litep2p" description = "Peer-to-peer networking library" repository = "https://github.com/paritytech/litep2p" license = "MIT" -version = "0.12.1" +version = "0.12.2" edition = "2021" # cargo-machete does not detect serde_millis usage, so we ignore the warning From 075838367dc21f1bfbd8e6d81781bb8f6e0191ee Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Wed, 26 Nov 2025 10:25:46 +0000 Subject: [PATCH 2/3] chagelog: Add changelog Signed-off-by: Alexandru Vasile --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 892e1e4f..ec4dadba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ 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). + +## [0.12.2] - 2025-11-26 + +This release allows all Bitswap CIDs (v1) to pass regardless of the used hash. It also enhances local address checks in the transport manager. + +### Changed + +- Allow all the Bitswap CIDs (v1) to pass regardless of used hash ([#482](https://github.com/paritytech/litep2p/pull/482)) +- transport/manager: Enhance local address checks ([#480](https://github.com/paritytech/litep2p/pull/480)) + + ## [0.12.1] - 2025-11-21 This release adds support for connecting to multiple Kademlia DHT networks. The change is backward-compatible, no client code modifications should be needed compared to v0.12.0. From 9dd48e9961183dc39a8439a5bbae41e67af6c071 Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Fri, 28 Nov 2025 12:25:31 +0000 Subject: [PATCH 3/3] changelog: Update changelog Signed-off-by: Alexandru Vasile --- CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec4dadba..149bd735 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,16 +6,17 @@ 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). -## [0.12.2] - 2025-11-26 +## [0.12.2] - 2025-11-28 This release allows all Bitswap CIDs (v1) to pass regardless of the used hash. It also enhances local address checks in the transport manager. ### Changed +- transport-service: Enhance logging with protocol names ([#485](https://github.com/paritytech/litep2p/pull/485)) +- bitswap: Reexports for CID ([#486](https://github.com/paritytech/litep2p/pull/486)) - Allow all the Bitswap CIDs (v1) to pass regardless of used hash ([#482](https://github.com/paritytech/litep2p/pull/482)) - transport/manager: Enhance local address checks ([#480](https://github.com/paritytech/litep2p/pull/480)) - ## [0.12.1] - 2025-11-21 This release adds support for connecting to multiple Kademlia DHT networks. The change is backward-compatible, no client code modifications should be needed compared to v0.12.0.