Skip to content

Commit

Permalink
Bump version and edit Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ogoffart committed Dec 14, 2021
1 parent 133096d commit 12ccfec
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.9

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

## 1.8.0

- Add `try_insert` API -- a version of `set` that returns a reference.
Expand Down
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "once_cell"
version = "1.8.0"
version = "1.9.0"
authors = ["Aleksey Kladov <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2018"
Expand All @@ -25,7 +25,10 @@ members = ["xtask"]
parking_lot = { version = "0.11", optional = true, default_features = false }

# To be used in order to enable the race feature on targets
# that doe not have atomic
# that do not have atomics
# *Warning:* This can be unsound. Please read the README of
# [atomic-polyfill](https://github.com/embassy-rs/atomic-polyfill)
# and make sure you understand all the implications
atomic-polyfill = { version = "0.1", optional = true }

[dev-dependencies]
Expand Down

0 comments on commit 12ccfec

Please sign in to comment.