diff --git a/CHANGELOG.md b/CHANGELOG.md index 892e1e4f..149bd735 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ 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-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. 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