Skip to content

Commit

Permalink
Prepare v0.3.0 release (tokio-rs#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
carllerche authored Mar 24, 2020
1 parent 88e4225 commit 3483cd6
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# 0.2.15 (February 25, 2019)
# 0.3.0 (March 24, 2020)

### Breaking
- `CausalCell` is renamed `UnsafeCell`
- `Atomic*::get_mut()` is removed in favor of `with` and `with_mut` fns.
- The max threads setting is removed.

### Fixed
- Atomic coherence checking better matches the spec.

### Added
- Models execute much faster
- Loom types are able to perform location tracking for improved error output.

# 0.2.15 (February 25, 2020)

### Fixed
- avoid global happens-before with `SeqCst` ordering (#108).
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ edition = "2018"
license = "MIT"
authors = ["Carl Lerche <[email protected]>"]
description = "Permutation testing for concurrent code"
documentation = "https://docs.rs/loom/0.2.15/loom"
documentation = "https://docs.rs/loom/0.3.0/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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To use `loom`, first add this to your `Cargo.toml`:

```toml
[dev-dependencies]
loom = "0.2.15"
loom = "0.3"
```

Next, create a test file and add a test:
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.2.15")]
#![doc(html_root_url = "https://docs.rs/loom/0.3.0")]
#![deny(missing_debug_implementations, missing_docs, rust_2018_idioms)]
#![cfg_attr(loom_nightly, feature(track_caller))]

Expand Down

0 comments on commit 3483cd6

Please sign in to comment.