File tree Expand file tree Collapse file tree 4 files changed +15
-8
lines changed
Expand file tree Collapse file tree 4 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 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
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
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
Original file line number Diff line number Diff 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 "
99edition = " 2018"
1010license = " MIT"
1111authors = [
" Carl Lerche <[email protected] >" ]
@@ -44,4 +44,4 @@ futures-util = "0.3.0"
4444
4545[package .metadata .docs .rs ]
4646all-features = true
47- rustdoc-args = [" --cfg" , " docsrs" ]
47+ rustdoc-args = [" --cfg" , " docsrs" ]
Original file line number Diff line number Diff 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.
232231pub fn model < F > ( f : F )
233232where
234233 F : Fn ( ) + Sync + Send + ' static ,
Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments