Skip to content

Commit

Permalink
prepare v0.2.11 release (tokio-rs#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
carllerche authored Oct 24, 2019
1 parent f4e21e8 commit ed29930
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 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.11 (October 24, 2019)

### Added
- `Mutex::try_lock` (#83).
- stubbed `Condvar::wait_timeout` (#86).

# 0.2.10 (October 15, 2019)

### Added
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ name = "loom"
# - Cargo.toml
# - README.md
# - Create git tag
version = "0.2.10"
version = "0.2.11"
edition = "2018"
license = "MIT"
authors = ["Carl Lerche <[email protected]>"]
description = "Permutation testing for concurrent code"
documentation = "https://docs.rs/loom/0.2.10/loom"
homepage = "https://github.com/carllerche/loom"
repository = "https://github.com/carllerche/loom"
documentation = "https://docs.rs/loom/0.2.11/loom"
homepage = "https://github.com/tokio-rs/loom"
repository = "https://github.com/tokio-rs/loom"
readme = "README.md"
keywords = ["atomic", "lock-free"]
categories = ["concurrency", "data-structures"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Loom is a testing tool for concurrent Rust code. It runs a test many times,
permuting the possible concurrent executions of that test under the C11 memory
model. It uses state reduction techniques to avoid combinatorial explosion.

[![Build Status](https://dev.azure.com/carllerche/loom/_apis/build/status/carllerche.loom?branchName=master)](https://dev.azure.com/carllerche/loom/_build/latest?definitionId=2&branchName=master)
[![Build Status](https://dev.azure.com/tokio-rs/loom/_apis/build/status/tokio-rs.loom?branchName=master)](https://dev.azure.com/tokio-rs/loom/_build/latest?definitionId=2&branchName=master)

[Documentation](https://docs.rs/loom)

Expand All @@ -14,7 +14,7 @@ To use `loom`, first add this to your `Cargo.toml`:

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

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

Expand Down

0 comments on commit ed29930

Please sign in to comment.