Skip to content

Commit

Permalink
bump version to 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Giersch committed Nov 30, 2022
1 parent f788ee4 commit 82ebf60
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 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.2"
version = "0.3.3"
authors = ["Oliver Giersch"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ blocking mechanisms with clear distinction between blocking and non-blocking
methods and additional support for `#[no_std]` environments when using
spin-locks.



[![Build Status](https://github.com/oliver-giersch/conquer-once/workflows/Rust/badge.svg)](
https://github.com/oliver-giersch/conquer-once/actions)
[![Latest version](https://img.shields.io/crates/v/conquer-once.svg)](
Expand All @@ -23,7 +21,7 @@ To use this crate, add the following to your `Cargo.toml`

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

## Minimum Supported Rust Version (MSRV)
Expand All @@ -42,7 +40,7 @@ The feature can be disabled by specifying the dependency as follows:

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

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

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

### Release `0.3.3`

- improves and clarifies wording of public documentation
- improves internal documentation around all uses of unsafe code

0 comments on commit 82ebf60

Please sign in to comment.