Skip to content

Commit 93c96d5

Browse files
authored
prepare v0.3.1 release (#120)
1 parent c818498 commit 93c96d5

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.3.1 (April 8, 2020)
2+
3+
### Fixed
4+
- `UnsafeCell` false negative under some scenarios (#119).
5+
6+
### Added
7+
- `RwLock` support (#88)
8+
- location tracking to atomic types (#114).
9+
110
# 0.3.0 (March 24, 2020)
211

312
### Breaking

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ name = "loom"
99
# - Cargo.toml
1010
# - README.md
1111
# - Create git tag
12-
version = "0.3.0"
12+
version = "0.3.1"
1313
edition = "2018"
1414
license = "MIT"
1515
authors = ["Carl Lerche <[email protected]>"]
1616
description = "Permutation testing for concurrent code"
17-
documentation = "https://docs.rs/loom/0.3.0/loom"
17+
documentation = "https://docs.rs/loom/0.3.1/loom"
1818
homepage = "https://github.com/tokio-rs/loom"
1919
repository = "https://github.com/tokio-rs/loom"
2020
readme = "README.md"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/loom/0.3.0")]
1+
#![doc(html_root_url = "https://docs.rs/loom/0.3.1")]
22
#![deny(missing_debug_implementations, missing_docs, rust_2018_idioms)]
33
#![cfg_attr(loom_nightly, feature(track_caller))]
44

0 commit comments

Comments
 (0)