Skip to content

Commit 7ac3da0

Browse files
chore(release): prepare for publishing
1 parent e76f15e commit 7ac3da0

File tree

41 files changed

+979
-439
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+979
-439
lines changed

Cargo.lock

Lines changed: 301 additions & 349 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/ironrdp-acceptor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ test = false
1717

1818
[dependencies]
1919
ironrdp-core = { path = "../ironrdp-core", version = "0.1", features = ["alloc"] } # public
20-
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.4" } # public
20+
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.5" } # public
2121
ironrdp-svc = { path = "../ironrdp-svc", version = "0.3" } # public
22-
ironrdp-connector = { path = "../ironrdp-connector", version = "0.4" } # public
22+
ironrdp-connector = { path = "../ironrdp-connector", version = "0.5" } # public
2323
ironrdp-async = { path = "../ironrdp-async", version = "0.4" } # public
2424
tracing = { version = "0.1", features = ["log"] }
2525

crates/ironrdp-ainput/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ 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

88

9+
## [[0.2.1](https://github.com/Devolutions/IronRDP/compare/ironrdp-ainput-v0.2.0...ironrdp-ainput-v0.2.1)] - 2025-05-27
10+
11+
### <!-- 7 -->Build
12+
13+
- Bump bitflags from 2.9.0 to 2.9.1 in the patch group across 1 directory (#792) ([87ed315bc2](https://github.com/Devolutions/IronRDP/commit/87ed315bc28fdd2dcfea89b052fa620a7e346e5a))
14+
15+
16+
917
## [[0.1.3](https://github.com/Devolutions/IronRDP/compare/ironrdp-ainput-v0.1.2...ironrdp-ainput-v0.1.3)] - 2025-03-12
1018

1119
### <!-- 7 -->Build

crates/ironrdp-ainput/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ironrdp-ainput"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
readme = "README.md"
55
description = "AInput dynamic channel implementation"
66
edition.workspace = true

crates/ironrdp-async/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ 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

88

9+
## [[0.4.1](https://github.com/Devolutions/IronRDP/compare/ironrdp-async-v0.4.0...ironrdp-async-v0.4.1)] - 2025-05-27
10+
11+
### <!-- 1 -->Features
12+
13+
- Add reqwest feature (#734) ([032c38be92](https://github.com/Devolutions/IronRDP/commit/032c38be9229cfd35f0f6fc8eac5cccc960480d3))
14+
15+
Move the client ReqwestNetworkClient to ironrdp-tokio, so other clients
16+
can optionally use the implementation.
17+
18+
19+
920
## [[0.3.2](https://github.com/Devolutions/IronRDP/compare/ironrdp-async-v0.3.1...ironrdp-async-v0.3.2)] - 2025-03-12
1021

1122
### <!-- 7 -->Build

crates/ironrdp-async/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ironrdp-async"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
readme = "README.md"
55
description = "Provides `Future`s wrapping the IronRDP state machines conveniently"
66
edition.workspace = true
@@ -16,9 +16,9 @@ doctest = false
1616
test = false
1717

1818
[dependencies]
19-
ironrdp-connector = { path = "../ironrdp-connector", version = "0.4" } # public
19+
ironrdp-connector = { path = "../ironrdp-connector", version = "0.5" } # public
2020
ironrdp-core = { path = "../ironrdp-core", version = "0.1", features = ["alloc"] } # public
21-
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.4" } # public
21+
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.5" } # public
2222
tracing = { version = "0.1", features = ["log"] }
2323
bytes = "1" # public
2424

crates/ironrdp-blocking/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ doctest = false
1616
test = false
1717

1818
[dependencies]
19-
ironrdp-connector = { path = "../ironrdp-connector", version = "0.4" } # public
19+
ironrdp-connector = { path = "../ironrdp-connector", version = "0.5" } # public
2020
ironrdp-core = { path = "../ironrdp-core", version = "0.1", features = ["alloc"] } # public
21-
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.4" } # public
21+
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.5" } # public
2222
tracing = { version = "0.1", features = ["log"] }
2323
bytes = "1" # public
2424

crates/ironrdp-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ native-tls = ["ironrdp-tls/native-tls", "tokio-tungstenite/native-tls"]
3030

3131
[dependencies]
3232
# Protocols
33-
ironrdp = { path = "../ironrdp", version = "0.9", features = [
33+
ironrdp = { path = "../ironrdp", version = "0.10", features = [
3434
"session",
3535
"input",
3636
"graphics",
@@ -43,7 +43,7 @@ ironrdp = { path = "../ironrdp", version = "0.9", features = [
4343
"connector",
4444
] }
4545
ironrdp-core = { path = "../ironrdp-core", version = "0.1", features = ["alloc"] }
46-
ironrdp-cliprdr-native = { path = "../ironrdp-cliprdr-native", version = "0.2" }
46+
ironrdp-cliprdr-native = { path = "../ironrdp-cliprdr-native", version = "0.3" }
4747
ironrdp-rdpsnd-native = { path = "../ironrdp-rdpsnd-native", version = "0.2" }
4848
ironrdp-tls = { path = "../ironrdp-tls", version = "0.1" }
4949
ironrdp-tokio = { path = "../ironrdp-tokio", version = "0.3", features = ["reqwest"] }

crates/ironrdp-cliprdr-native/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@ 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

88

9+
## [[0.3.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-cliprdr-native-v0.2.0...ironrdp-cliprdr-native-v0.3.0)] - 2025-05-27
10+
11+
### <!-- 1 -->Features
12+
13+
- [**breaking**] Add on_ready() callback (#729) ([4e581e0f47](https://github.com/Devolutions/IronRDP/commit/4e581e0f47593097c16f2dde43cd0ff0976fe73e))
14+
15+
Give a hint to the backend when the channel is actually connected &
16+
ready to process messages.
17+
18+
### <!-- 7 -->Build
19+
20+
- Update `windows` crate to 0.61.1 (#743) ([135b8bc4f6](https://github.com/Devolutions/IronRDP/commit/135b8bc4f6e62a2b41ecc63c6804a01cc7d67b69))
21+
22+
23+
924
## [[0.1.4](https://github.com/Devolutions/IronRDP/compare/ironrdp-cliprdr-native-v0.1.3...ironrdp-cliprdr-native-v0.1.4)] - 2025-03-12
1025

1126
### <!-- 7 -->Build

crates/ironrdp-cliprdr-native/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ironrdp-cliprdr-native"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
readme = "README.md"
55
description = "Native CLIPRDR static channel backend implementations for IronRDP"
66
edition.workspace = true
@@ -16,7 +16,7 @@ doctest = false
1616
test = false
1717

1818
[dependencies]
19-
ironrdp-cliprdr = { path = "../ironrdp-cliprdr", version = "0.2" } # public
19+
ironrdp-cliprdr = { path = "../ironrdp-cliprdr", version = "0.3" } # public
2020
ironrdp-core = { path = "../ironrdp-core", version = "0.1" }
2121
tracing = { version = "0.1", features = ["log"] }
2222

0 commit comments

Comments
 (0)