Skip to content

Commit

Permalink
prepare v0.3.1 release (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
carllerche authored Apr 9, 2020
1 parent c818498 commit 93c96d5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.3.1 (April 8, 2020)

### Fixed
- `UnsafeCell` false negative under some scenarios (#119).

### Added
- `RwLock` support (#88)
- location tracking to atomic types (#114).

# 0.3.0 (March 24, 2020)

### Breaking
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ name = "loom"
# - Cargo.toml
# - README.md
# - Create git tag
version = "0.3.0"
version = "0.3.1"
edition = "2018"
license = "MIT"
authors = ["Carl Lerche <[email protected]>"]
description = "Permutation testing for concurrent code"
documentation = "https://docs.rs/loom/0.3.0/loom"
documentation = "https://docs.rs/loom/0.3.1/loom"
homepage = "https://github.com/tokio-rs/loom"
repository = "https://github.com/tokio-rs/loom"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/loom/0.3.0")]
#![doc(html_root_url = "https://docs.rs/loom/0.3.1")]
#![deny(missing_debug_implementations, missing_docs, rust_2018_idioms)]
#![cfg_attr(loom_nightly, feature(track_caller))]

Expand Down

0 comments on commit 93c96d5

Please sign in to comment.