File tree 4 files changed +15
-8
lines changed
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
+
1
9
# 0.7.0 (August 4, 2023)
2
10
3
11
### Added
30
38
### Added
31
39
32
40
- 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 )
35
43
- sync: add ` mpsc::Receiver::try_recv ` (#262 )
36
44
37
45
### Documented
72
80
73
81
- Improve error message when execution state is unavailable (such as when
74
82
running outside of ` loom::model ` ) (#242 )
75
-
83
+
76
84
# 0.5.3 (November 23, 2021)
77
85
78
86
### Added
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name = "loom"
5
5
# - README.md
6
6
# - Update CHANGELOG.md
7
7
# - Create git tag
8
- version = " 0.7.0 "
8
+ version = " 0.7.1 "
9
9
edition = " 2018"
10
10
license = " MIT"
11
11
authors = [
" Carl Lerche <[email protected] >" ]
@@ -44,4 +44,4 @@ futures-util = "0.3.0"
44
44
45
45
[package .metadata .docs .rs ]
46
46
all-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 {
227
227
228
228
/// Run all concurrent permutations of the provided closure.
229
229
///
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.
232
231
pub fn model < F > ( f : F )
233
232
where
234
233
F : Fn ( ) + Sync + Send + ' static ,
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ impl Thread {
43
43
/// Atomically makes the handle's token available if it is not already.
44
44
///
45
45
/// 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
47
47
/// used as a more CPU-efficient implementation of a spinlock.
48
48
///
49
49
/// See the [park documentation][park] for more details.
You can’t perform that action at this time.
0 commit comments