Skip to content
Open
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
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## `parking_lot` - [0.12.6](https://github.com/Amanieu/parking_lot/compare/parking_lot-v0.12.5...parking_lot-v0.12.6) - 2025-12-29

### Other
- Adjust confusing documentation of SpinWait::spin
- Merge pull request #506 from amy-kwan/amy-kwan/update-timespec-aix
- Use postcard instead of bincode in tests
- add Miri CI job
- Merge pull request #504 from Amanieu/fix_test_129
- Fix test_issue_129 under Miri
- condvar test: remove outdated comment

## `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-29

### Other
- Adjust confusing documentation of SpinWait::spin
- Merge pull request #506 from amy-kwan/amy-kwan/update-timespec-aix
- Use postcard instead of bincode in tests
- use AtomicPtr (with polyfill for operations missing on old Rust)

## `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

- Bumped MSRV to 1.71
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parking_lot"
version = "0.12.5"
version = "0.12.6"
authors = ["Amanieu d'Antras <[email protected]>"]
description = "More compact and efficient implementations of the standard synchronization primitives."
license = "MIT OR Apache-2.0"
Expand All @@ -19,7 +19,7 @@ rustdoc-args = ["--generate-link-to-definition"]
features = ["arc_lock", "serde", "deadlock_detection"]

[dependencies]
parking_lot_core = { path = "core", version = "0.9.12" }
parking_lot_core = { path = "core", version = "0.9.13" }
lock_api = { path = "lock_api", version = "0.4.14" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parking_lot_core"
version = "0.9.12"
version = "0.9.13"
authors = ["Amanieu d'Antras <[email protected]>"]
description = "An advanced API for creating custom synchronization primitives."
license = "MIT OR Apache-2.0"
Expand Down