Skip to content

Commit 896d627

Browse files
chore: release
1 parent 36554de commit 896d627

3 files changed

Lines changed: 18 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## `parking_lot` - [0.12.6](https://github.com/Amanieu/parking_lot/compare/parking_lot-v0.12.5...parking_lot-v0.12.6) - 2025-12-17
11+
12+
### Other
13+
- Use postcard instead of bincode in tests
14+
- add Miri CI job
15+
- Merge pull request #504 from Amanieu/fix_test_129
16+
- Fix test_issue_129 under Miri
17+
- condvar test: remove outdated comment
18+
19+
## `parking_lot_core` - [0.9.13](https://github.com/Amanieu/parking_lot/compare/parking_lot_core-v0.9.12...parking_lot_core-v0.9.13) - 2025-12-17
20+
21+
### Other
22+
- Use postcard instead of bincode in tests
23+
- use AtomicPtr (with polyfill for operations missing on old Rust)
24+
1025
## `parking_lot` - [0.12.5](https://github.com/Amanieu/parking_lot/compare/parking_lot-v0.12.4...parking_lot-v0.12.5) - 2025-09-30
1126

1227
- Bumped MSRV to 1.71

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parking_lot"
3-
version = "0.12.5"
3+
version = "0.12.6"
44
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
55
description = "More compact and efficient implementations of the standard synchronization primitives."
66
license = "MIT OR Apache-2.0"
@@ -19,7 +19,7 @@ rustdoc-args = ["--generate-link-to-definition"]
1919
features = ["arc_lock", "serde", "deadlock_detection"]
2020

2121
[dependencies]
22-
parking_lot_core = { path = "core", version = "0.9.12" }
22+
parking_lot_core = { path = "core", version = "0.9.13" }
2323
lock_api = { path = "lock_api", version = "0.4.14" }
2424

2525
[dev-dependencies]

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parking_lot_core"
3-
version = "0.9.12"
3+
version = "0.9.13"
44
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
55
description = "An advanced API for creating custom synchronization primitives."
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)