Skip to content

Commit c3a3ede

Browse files
bors[bot]khuey
andauthored
Merge #174
174: Upgrade parking_lot. r=khuey a=khuey Co-authored-by: Kyle Huey <khuey@pernos.co>
2 parents 64ef4a0 + c3f11bb commit c3a3ede

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.10
4+
5+
- upgrade `parking_lot` to `0.12.0` (note that this bumps MSRV with `parking_lot` feature enabled to `1.49.0`).
6+
37
## 1.9
48

59
- Added an `atomic-polyfill` optional dependency to compile `race` on platforms without atomics

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "once_cell"
3-
version = "1.9.0"
3+
version = "1.10.0"
44
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2018"
@@ -22,7 +22,7 @@ members = ["xtask"]
2222
# Uses parking_lot to implement once_cell::sync::OnceCell.
2323
# This makes not speed difference, but makes each OnceCell<T>
2424
# for up to 16 bytes smaller, depending on the size of the T.
25-
parking_lot = { version = "0.11", optional = true, default_features = false }
25+
parking_lot = { version = "0.12", optional = true, default_features = false }
2626

2727
# To be used in order to enable the race feature on targets
2828
# that do not have atomics

0 commit comments

Comments
 (0)