Skip to content

Commit

Permalink
bumpt to 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-giersch committed Jan 4, 2021
1 parent 268301a commit 8af426d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "conquer-once"
description = "Synchronization primitives for lazy and one-time initialization"
version = "0.3.1"
version = "0.3.2"
authors = ["Oliver Giersch"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To use this crate, add the following to your `Cargo.toml`

```
[dependencies]
conquer-once = "0.3.0"
conquer-once = "0.3.2"
```

## Minimum Supported Rust Version (MSRV)
Expand All @@ -40,9 +40,9 @@ exports the types in the crate's `spin` sub-module, which use spin-locks.

The feature can be disabled by specifying the dependency as follows:

```
```
[dependencies.conquer-once]
version = "0.3.0"
version = "0.3.2"
use-default-features = false
```

Expand Down
6 changes: 5 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,8 @@

### Release `0.3.1`

- fixes an apparent regression, requiring a new compiler than the stated 1.36.0
- fixes an apparent regression, requiring a new compiler than the stated 1.36.0

### Release `0.3.2`

- fixes potential UB due to insufficiently strict bounds on `Sync` implementation for `OnceCell` (see [Issue #3](https://github.com/oliver-giersch/conquer-once/issues/3))

0 comments on commit 8af426d

Please sign in to comment.