Skip to content

Commit fd51ef8

Browse files
authored
Prepare v0.7.1 release (#329)
1 parent ddf871f commit fd51ef8

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

CHANGELOG.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 0.7.1 (October 2, 2023)
2+
3+
### Added
4+
5+
- Add `Atomic*::into_inner` (#327)
6+
- Add `get_mut` to `Mutex` and `RwLock` (#322)
7+
- Implement `AsRef` and `Borrow` for `Arc` (#325)
8+
19
# 0.7.0 (August 4, 2023)
210

311
### Added
@@ -30,8 +38,8 @@
3038
### Added
3139

3240
- cell: add `UnsafeCell::into_inner` for parity with `std` (#272)
33-
- sync: re-enable `Arc::strong_count` (#172)
34-
- sync: implement `Arc::try_unwrap` (#262)
41+
- sync: re-enable `Arc::strong_count` (#172)
42+
- sync: implement `Arc::try_unwrap` (#262)
3543
- sync: add `mpsc::Receiver::try_recv` (#262)
3644

3745
### Documented
@@ -72,7 +80,7 @@
7280

7381
- Improve error message when execution state is unavailable (such as when
7482
running outside of `loom::model`) (#242)
75-
83+
7684
# 0.5.3 (November 23, 2021)
7785

7886
### Added

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "loom"
55
# - README.md
66
# - Update CHANGELOG.md
77
# - Create git tag
8-
version = "0.7.0"
8+
version = "0.7.1"
99
edition = "2018"
1010
license = "MIT"
1111
authors = ["Carl Lerche <[email protected]>"]
@@ -44,4 +44,4 @@ futures-util = "0.3.0"
4444

4545
[package.metadata.docs.rs]
4646
all-features = true
47-
rustdoc-args = ["--cfg", "docsrs"]
47+
rustdoc-args = ["--cfg", "docsrs"]

src/model.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,7 @@ impl Default for Builder {
227227

228228
/// Run all concurrent permutations of the provided closure.
229229
///
230-
/// Uses a default [`Builder`](crate::model::Builder) which can be affected
231-
/// by environment variables.
230+
/// Uses a default [`Builder`] which can be affected by environment variables.
232231
pub fn model<F>(f: F)
233232
where
234233
F: Fn() + Sync + Send + 'static,

src/thread.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ impl Thread {
4343
/// Atomically makes the handle's token available if it is not already.
4444
///
4545
/// Every thread is equipped with some basic low-level blocking support, via
46-
/// the [`park`][park] function and the `unpark()` method. These can be
46+
/// the [`park`] function and the `unpark()` method. These can be
4747
/// used as a more CPU-efficient implementation of a spinlock.
4848
///
4949
/// See the [park documentation][park] for more details.

0 commit comments

Comments
 (0)