Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ 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.3] - 2025-12-16

This release improves the robustness of the multistream-select negotiation over WebRTC transport and fixes inbound bandwidth metering on substreams. It also enhances the dialing success rate by improving the transport dialing logic. Additionally, it re-exports CID's multihash to facilitate the construction of CID V1.

### Changed

- transports: Improves the robustness and success rate of connection dialing ([#495](https://github.com/paritytech/litep2p/pull/495))
- types: Re-export cid's multihash to construct CID V1 ([#491](https://github.com/paritytech/litep2p/pull/491))

### Fixed

- fix: multistream-select negotiation on outbound substream over webrtc ([#465](https://github.com/paritytech/litep2p/pull/465))
- substream: Fix inbound bandwidth metering ([#499](https://github.com/paritytech/litep2p/pull/499))

## [0.12.2] - 2025-11-28

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "litep2p"
description = "Peer-to-peer networking library"
repository = "https://github.com/paritytech/litep2p"
license = "MIT"
version = "0.12.2"
version = "0.12.3"
edition = "2021"

# cargo-machete does not detect serde_millis usage, so we ignore the warning
Expand Down
Loading