You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+41-1Lines changed: 41 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,47 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## 25.0.0 (2023-05-16)
9
+
10
+
### New Features
11
+
12
+
- <csr-id-8941f4b5b9c0d00dfd7b82c756b128982f163a06/> Introduce the object-safe `RawProgress` trait.
13
+
It's automatically implemented for `Progress` and allows for more flexible use
14
+
of progress particularly in leaf nodes. This is useful if a function needs to take
15
+
multiple types of progress as it is called from different places in the same function.
16
+
17
+
Without dyn-traits, it's not possible to make such call.
18
+
19
+
### New Features (BREAKING)
20
+
21
+
- <csr-id-84d96c7b6ab07462d6c20147958d5aa1a58a688e/> Make messaging functions thread-safe by taking shared borrow and requring `Sync`.
22
+
That way it's possible to share the `RawProgress` object across threads and emit messages,
23
+
much like a logging system that's more integrated with rendering.
24
+
25
+
### Commit Statistics
26
+
27
+
<csr-read-only-do-not-edit/>
28
+
29
+
- 2 commits contributed to the release.
30
+
- 5 days passed between releases.
31
+
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
32
+
- 0 issues like '(#ID)' were seen in commit messages
33
+
34
+
### Commit Details
35
+
36
+
<csr-read-only-do-not-edit/>
37
+
38
+
<details><summary>view details</summary>
39
+
40
+
***Uncategorized**
41
+
- Make messaging functions thread-safe by taking shared borrow and requring `Sync`. ([`84d96c7`](https://github.com/byron/prodash/commit/84d96c7b6ab07462d6c20147958d5aa1a58a688e))
42
+
- Introduce the object-safe `RawProgress` trait. ([`8941f4b`](https://github.com/byron/prodash/commit/8941f4b5b9c0d00dfd7b82c756b128982f163a06))
0 commit comments