Skip to content

Commit

Permalink
Prepare v0.7.1 release (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e authored Oct 2, 2023
1 parent ddf871f commit fd51ef8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.7.1 (October 2, 2023)

### Added

- Add `Atomic*::into_inner` (#327)
- Add `get_mut` to `Mutex` and `RwLock` (#322)
- Implement `AsRef` and `Borrow` for `Arc` (#325)

# 0.7.0 (August 4, 2023)

### Added
Expand Down Expand Up @@ -30,8 +38,8 @@
### Added

- cell: add `UnsafeCell::into_inner` for parity with `std` (#272)
- sync: re-enable `Arc::strong_count` (#172)
- sync: implement `Arc::try_unwrap` (#262)
- sync: re-enable `Arc::strong_count` (#172)
- sync: implement `Arc::try_unwrap` (#262)
- sync: add `mpsc::Receiver::try_recv` (#262)

### Documented
Expand Down Expand Up @@ -72,7 +80,7 @@

- Improve error message when execution state is unavailable (such as when
running outside of `loom::model`) (#242)

# 0.5.3 (November 23, 2021)

### Added
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name = "loom"
# - README.md
# - Update CHANGELOG.md
# - Create git tag
version = "0.7.0"
version = "0.7.1"
edition = "2018"
license = "MIT"
authors = ["Carl Lerche <me@carllerche.com>"]
Expand Down Expand Up @@ -44,4 +44,4 @@ futures-util = "0.3.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]
3 changes: 1 addition & 2 deletions src/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,7 @@ impl Default for Builder {

/// Run all concurrent permutations of the provided closure.
///
/// Uses a default [`Builder`](crate::model::Builder) which can be affected
/// by environment variables.
/// Uses a default [`Builder`] which can be affected by environment variables.
pub fn model<F>(f: F)
where
F: Fn() + Sync + Send + 'static,
Expand Down
2 changes: 1 addition & 1 deletion src/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ impl Thread {
/// Atomically makes the handle's token available if it is not already.
///
/// Every thread is equipped with some basic low-level blocking support, via
/// the [`park`][park] function and the `unpark()` method. These can be
/// the [`park`] function and the `unpark()` method. These can be
/// used as a more CPU-efficient implementation of a spinlock.
///
/// See the [park documentation][park] for more details.
Expand Down

0 comments on commit fd51ef8

Please sign in to comment.