Skip to content

Commit

Permalink
Release v0.2.10 (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
carllerche authored Oct 16, 2019
1 parent 10cf779 commit b96c543
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.2.10 (October 15, 2019)

### Added
- `alloc_zeroed` (#77).
- `AtomicPtr::get_mut` (#80).

# 0.2.9 (October 9, 2019)

### Fixed
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.2.9"
version = "0.2.10"
edition = "2018"
license = "MIT"
authors = ["Carl Lerche <me@carllerche.com>"]
description = "Permutation testing for concurrent code"
documentation = "https://docs.rs/loom/0.2.9/loom"
documentation = "https://docs.rs/loom/0.2.10/loom"
homepage = "https://github.com/carllerche/loom"
repository = "https://github.com/carllerche/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 @@ -14,7 +14,7 @@ To use `loom`, first add this to your `Cargo.toml`:

```toml
[dev-dependencies]
loom = "0.2.9"
loom = "0.2.10"
```

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.9")]
#![doc(html_root_url = "https://docs.rs/loom/0.2.10")]
#![deny(missing_debug_implementations, missing_docs, rust_2018_idioms)]
#![cfg_attr(test, deny(warnings))]

Expand Down

0 comments on commit b96c543

Please sign in to comment.