Skip to content

Commit 80b2a60

Browse files
Release async-promise v0.1.1, async-ssh2-russh v0.2.0
1 parent c4dbc62 commit 80b2a60

File tree

3 files changed

+65
-3
lines changed

3 files changed

+65
-3
lines changed

async-promise/CHANGELOG.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11

22

3+
## v0.1.1 (2025-12-11)
4+
5+
### Chore
6+
7+
- <csr-id-c4dbc623c7988850166c1182f496fa697f8ca544/> bump versions for release
8+
9+
### Refactor
10+
11+
- <csr-id-90a233a994960672dd5fe876f82f45e030a2f576/> convert `fn closed` to promise to allow `&self`
12+
13+
### Commit Statistics
14+
15+
<csr-read-only-do-not-edit/>
16+
17+
- 2 commits contributed to the release.
18+
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
19+
- 1 unique issue was worked on: [#2](https://github.com/hydro-project/async-ssh2-russh/issues/2)
20+
21+
### Commit Details
22+
23+
<csr-read-only-do-not-edit/>
24+
25+
<details><summary>view details</summary>
26+
27+
* **[#2](https://github.com/hydro-project/async-ssh2-russh/issues/2)**
28+
- Convert `fn closed` to promise to allow `&self` ([`90a233a`](https://github.com/hydro-project/async-ssh2-russh/commit/90a233a994960672dd5fe876f82f45e030a2f576))
29+
* **Uncategorized**
30+
- Bump versions for release ([`c4dbc62`](https://github.com/hydro-project/async-ssh2-russh/commit/c4dbc623c7988850166c1182f496fa697f8ca544))
31+
</details>
32+
333
## v0.1.0 (2025-04-29)
434

535
### New Features
@@ -11,7 +41,7 @@
1141

1242
<csr-read-only-do-not-edit/>
1343

14-
- 1 commit contributed to the release.
44+
- 2 commits contributed to the release.
1545
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
1646
- 0 issues like '(#ID)' were seen in commit messages
1747

@@ -22,6 +52,7 @@
2252
<details><summary>view details</summary>
2353

2454
* **Uncategorized**
55+
- Release async-promise v0.1.0, async-ssh2-russh v0.1.0 ([`20e4970`](https://github.com/hydro-project/async-ssh2-russh/commit/20e4970dbbe9db3e101f3066098e44e4f3050f79))
2556
- Implement `async-ssh2-russh` ([`5c04376`](https://github.com/hydro-project/async-ssh2-russh/commit/5c0437695e7f0b1a4b3bea5af3e138de8a85a12e))
2657
</details>
2758

async-ssh2-russh/CHANGELOG.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11

22

3+
## v0.2.0 (2025-12-11)
4+
5+
### Chore
6+
7+
- <csr-id-c4dbc623c7988850166c1182f496fa697f8ca544/> bump versions for release
8+
9+
### Refactor
10+
11+
- <csr-id-90a233a994960672dd5fe876f82f45e030a2f576/> convert `fn closed` to promise to allow `&self`
12+
13+
### Commit Statistics
14+
15+
<csr-read-only-do-not-edit/>
16+
17+
- 2 commits contributed to the release.
18+
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
19+
- 1 unique issue was worked on: [#2](https://github.com/hydro-project/async-ssh2-russh/issues/2)
20+
21+
### Commit Details
22+
23+
<csr-read-only-do-not-edit/>
24+
25+
<details><summary>view details</summary>
26+
27+
* **[#2](https://github.com/hydro-project/async-ssh2-russh/issues/2)**
28+
- Convert `fn closed` to promise to allow `&self` ([`90a233a`](https://github.com/hydro-project/async-ssh2-russh/commit/90a233a994960672dd5fe876f82f45e030a2f576))
29+
* **Uncategorized**
30+
- Bump versions for release ([`c4dbc62`](https://github.com/hydro-project/async-ssh2-russh/commit/c4dbc623c7988850166c1182f496fa697f8ca544))
31+
</details>
32+
333
## v0.1.0 (2025-04-29)
434

535
### New Features
@@ -11,7 +41,7 @@
1141

1242
<csr-read-only-do-not-edit/>
1343

14-
- 1 commit contributed to the release.
44+
- 2 commits contributed to the release.
1545
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
1646
- 0 issues like '(#ID)' were seen in commit messages
1747

@@ -22,6 +52,7 @@
2252
<details><summary>view details</summary>
2353

2454
* **Uncategorized**
55+
- Release async-promise v0.1.0, async-ssh2-russh v0.1.0 ([`20e4970`](https://github.com/hydro-project/async-ssh2-russh/commit/20e4970dbbe9db3e101f3066098e44e4f3050f79))
2556
- Implement `async-ssh2-russh` ([`5c04376`](https://github.com/hydro-project/async-ssh2-russh/commit/5c0437695e7f0b1a4b3bea5af3e138de8a85a12e))
2657
</details>
2758

async-ssh2-russh/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ sftp = [ "russh-sftp" ]
2020
all-features = true
2121

2222
[dependencies]
23-
async-promise = { version = "^0.1.0", path = "../async-promise" }
23+
async-promise = { version = "^0.1.1", path = "../async-promise" }
2424
russh = "0.52.0-beta.1"
2525
russh-sftp = { optional = true, version = "2.1.0" }
2626
thiserror = ">=1.0.30, <3.0.0" # We do not depend on the breaking changed behavior: https://github.com/dtolnay/thiserror/releases/tag/2.0.0

0 commit comments

Comments
 (0)