Skip to content

Commit fdbaa7a

Browse files
authored
chore: prepare loom v0.5.5 (#269)
# 0.5.5 (May 10, 2022) ### Added - sync: Add `Arc::from_std` without `T: Sized` bound (#226) - sync: Implement `Debug` for `AtomicPtr` for all `T` (#255) - logs: Add location tracking for threads and atomic operations (#258) - logs: Add additional location tracking to `Arc`, `alloc`, and `mpsc` (#265) - logs: Improve `tracing` configuration for `LOOM_LOG` (#266) - logs: Add a span for the current model's iteration (#267) ### Documented - Add note about in-memory representation of atomic types (#253) - Document `LOOM_LOG` syntax (#257) ### Fixed - Fix double panic when exceeding the branch limit in `Drop` (#245) - cell: Allow using `{Mut,Const}Ptr::{deref,with}` when the pointee is `!Sized` (#247) - thread: Fix semantics of `thread::park` after `Thread::unpark` (#250)
1 parent 02bd6b7 commit fdbaa7a

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# 0.5.5 (May 10, 2022)
2+
3+
### Added
4+
5+
- sync: Add `Arc::from_std` without `T: Sized` bound (#226)
6+
- sync: Implement `Debug` for `AtomicPtr` for all `T` (#255)
7+
- logs: Add location tracking for threads and atomic operations (#258)
8+
- logs: Add additional location tracking to `Arc`, `alloc`, and `mpsc` (#265)
9+
- logs: Improve `tracing` configuration for `LOOM_LOG` (#266)
10+
- logs: Add a span for the current model's iteration (#267)
11+
12+
### Documented
13+
14+
- Add note about in-memory representation of atomic types (#253)
15+
- Document `LOOM_LOG` syntax (#257)
16+
17+
### Fixed
18+
19+
- Fix double panic when exceeding the branch limit in `Drop` (#245)
20+
- cell: Allow using `{Mut,Const}Ptr::{deref,with}` when the pointee is `!Sized`
21+
(#247)
22+
- thread: Fix semantics of `thread::park` after `Thread::unpark` (#250)
23+
124
# 0.5.4 (December 3, 2021)
225

326
### Added

Cargo.toml

+1-1
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.5.4"
8+
version = "0.5.5"
99
edition = "2018"
1010
license = "MIT"
1111
authors = ["Carl Lerche <[email protected]>"]

0 commit comments

Comments
 (0)