Skip to content

Commit 02fcb9b

Browse files
committed
Release prodash v25.0.0
1 parent 84d96c7 commit 02fcb9b

File tree

2 files changed

+42
-2
lines changed

2 files changed

+42
-2
lines changed

CHANGELOG.md

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,47 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

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))
43+
</details>
44+
845
## 24.0.0 (2023-05-11)
946

47+
<csr-id-fe5d01736179271f6b7bf20367f5d0e2bb616c4a/>
48+
1049
### Chore (BREAKING)
1150

1251
- <csr-id-fe5d01736179271f6b7bf20367f5d0e2bb616c4a/> switch from `tui` to `ratatui`.
@@ -16,7 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1655

1756
<csr-read-only-do-not-edit/>
1857

19-
- 3 commits contributed to the release.
58+
- 4 commits contributed to the release.
2059
- 60 days passed between releases.
2160
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
2261
- 0 issues like '(#ID)' were seen in commit messages
@@ -34,6 +73,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3473
<details><summary>view details</summary>
3574

3675
* **Uncategorized**
76+
- Release prodash v24.0.0 ([`41ad0a4`](https://github.com/byron/prodash/commit/41ad0a45ea39e6b283f808768ea60495b3d2b65f))
3777
- Merge branch 'ratatui' ([`4920457`](https://github.com/byron/prodash/commit/492045793a23be9ebda7310d89593288a2bd3340))
3878
- Thanks clippy ([`25356a3`](https://github.com/byron/prodash/commit/25356a369c345b1e89f7c6c356ff7142020849de))
3979
- Switch from `tui` to `ratatui`. ([`fe5d017`](https://github.com/byron/prodash/commit/fe5d01736179271f6b7bf20367f5d0e2bb616c4a))

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "prodash"
3-
version = "24.0.0"
3+
version = "25.0.0"
44
authors = ["Sebastian Thiel <[email protected]>"]
55
description = "A dashboard for visualizing progress of asynchronous and possibly blocking tasks"
66
edition = "2021"

0 commit comments

Comments
 (0)