Skip to content

Commit b19008c

Browse files
chore(release): prepare for publishing (#699)
1 parent b5e6f2b commit b19008c

File tree

46 files changed

+284
-164
lines changed

Some content is hidden

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

46 files changed

+284
-164
lines changed

Cargo.lock

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

crates/ironrdp-acceptor/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.4.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-acceptor-v0.3.1...ironrdp-acceptor-v0.4.0)] - 2025-03-12
10+
11+
### <!-- 7 -->Build
12+
13+
- Bump ironrdp-pdu
14+
15+
16+
917
## [[0.3.1](https://github.com/Devolutions/IronRDP/compare/ironrdp-acceptor-v0.3.0...ironrdp-acceptor-v0.3.1)] - 2025-03-12
1018

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

crates/ironrdp-acceptor/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ironrdp-acceptor"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
readme = "README.md"
55
description = "State machines to drive an RDP connection acceptance sequence"
66
edition.workspace = true
@@ -16,11 +16,11 @@ doctest = false
1616
test = false
1717

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

2626
[lints]

crates/ironrdp-ainput/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-ainput"
3-
version = "0.1.3"
3+
version = "0.2.0"
44
readme = "README.md"
55
description = "AInput dynamic channel implementation"
66
edition.workspace = true
@@ -16,9 +16,9 @@ doctest = false
1616
test = false
1717

1818
[dependencies]
19+
ironrdp-core = { path = "../ironrdp-core", version = "0.1" } # public
20+
ironrdp-dvc = { path = "../ironrdp-dvc", version = "0.2" } # public
1921
bitflags = "2.4"
20-
ironrdp-core = { path = "../ironrdp-core", version = "0.1" }
21-
ironrdp-dvc = { path = "../ironrdp-dvc", version = "0.1" }
2222
num-derive.workspace = true # TODO: remove
2323
num-traits.workspace = true # TODO: remove
2424

crates/ironrdp-async/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.3.2](https://github.com/Devolutions/IronRDP/compare/ironrdp-async-v0.3.1...ironrdp-async-v0.3.2)] - 2025-03-12
10+
11+
### <!-- 7 -->Build
12+
13+
- Bump ironrdp-pdu
14+
15+
16+
917
## [[0.3.1](https://github.com/Devolutions/IronRDP/compare/ironrdp-async-v0.3.0...ironrdp-async-v0.3.1)] - 2025-03-12
1018

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

crates/ironrdp-async/Cargo.toml

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

1818
[dependencies]
19-
ironrdp-connector = { path = "../ironrdp-connector", version = "0.3" }
20-
ironrdp-core = { path = "../ironrdp-core", version = "0.1", features = ["alloc"] }
21-
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.4" }
22-
# ironrdp-session = { workspace = "../ironrdp-session", version = "0.2" }
19+
ironrdp-connector = { path = "../ironrdp-connector", version = "0.4" } # public
20+
ironrdp-core = { path = "../ironrdp-core", version = "0.1", features = ["alloc"] } # public
21+
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.4" } # public
2322
tracing = { version = "0.1", features = ["log"] }
24-
bytes = "1"
23+
bytes = "1" # public
2524

2625
[lints]
2726
workspace = true

crates/ironrdp-blocking/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.4.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-blocking-v0.3.1...ironrdp-blocking-v0.4.0)] - 2025-03-12
10+
11+
### <!-- 7 -->Build
12+
13+
- Bump ironrdp-pdu
14+
15+
16+
917
## [[0.3.1](https://github.com/Devolutions/IronRDP/compare/ironrdp-blocking-v0.3.0...ironrdp-blocking-v0.3.1)] - 2025-03-12
1018

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

crates/ironrdp-blocking/Cargo.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ironrdp-blocking"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
readme = "README.md"
55
description = "Blocking I/O abstraction wrapping the IronRDP state machines conveniently"
66
edition.workspace = true
@@ -16,12 +16,11 @@ doctest = false
1616
test = false
1717

1818
[dependencies]
19-
bytes = "1"
20-
ironrdp-connector = { path = "../ironrdp-connector", version = "0.3" }
21-
ironrdp-core = { path = "../ironrdp-core", version = "0.1", features = ["alloc"] }
22-
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.4" }
23-
# ironrdp-session = { path = "../ironrdp-session", version = "0.2" }
19+
ironrdp-connector = { path = "../ironrdp-connector", version = "0.4" } # public
20+
ironrdp-core = { path = "../ironrdp-core", version = "0.1", features = ["alloc"] } # public
21+
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.4" } # public
2422
tracing = { version = "0.1", features = ["log"] }
23+
bytes = "1" # public
2524

2625
[lints]
2726
workspace = true

crates/ironrdp-client/Cargo.toml

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

3131
[dependencies]
3232
# Protocols
33-
ironrdp = { path = "../ironrdp", version = "0.8", features = [
33+
ironrdp = { path = "../ironrdp", version = "0.9", features = [
3434
"session",
3535
"input",
3636
"graphics",
@@ -43,10 +43,10 @@ ironrdp = { path = "../ironrdp", version = "0.8", 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.1" }
47-
ironrdp-rdpsnd-native = { path = "../ironrdp-rdpsnd-native", version = "0.1" }
46+
ironrdp-cliprdr-native = { path = "../ironrdp-cliprdr-native", version = "0.2" }
47+
ironrdp-rdpsnd-native = { path = "../ironrdp-rdpsnd-native", version = "0.2" }
4848
ironrdp-tls = { path = "../ironrdp-tls", version = "0.1" }
49-
ironrdp-tokio = { path = "../ironrdp-tokio", version = "0.2" }
49+
ironrdp-tokio = { path = "../ironrdp-tokio", version = "0.3" }
5050
sspi = { version = "0.15", features = ["network_client", "dns_resolver"] } # TODO: enable additional features
5151

5252
# Windowing and rendering

crates/ironrdp-cliprdr-format/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ doctest = false
1616
test = false
1717

1818
[dependencies]
19-
ironrdp-core = { path = "../ironrdp-core", version = "0.1" }
19+
ironrdp-core = { path = "../ironrdp-core", version = "0.1" } # public
2020
thiserror = "1" # FIXME: handwrite the Error trait implementations.
2121
png = "0.17"
2222

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.1.4"
3+
version = "0.2.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.1" }
19+
ironrdp-cliprdr = { path = "../ironrdp-cliprdr", version = "0.2" } # public
2020
ironrdp-core = { path = "../ironrdp-core", version = "0.1" }
2121
tracing = { version = "0.1", features = ["log"] }
2222

crates/ironrdp-cliprdr/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ 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.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-cliprdr-v0.1.3...ironrdp-cliprdr-v0.2.0)] - 2025-03-12
10+
11+
### <!-- 7 -->Build
12+
13+
- Bump ironrdp-pdu
14+
915
## [[0.1.3](https://github.com/Devolutions/IronRDP/compare/ironrdp-cliprdr-v0.1.2...ironrdp-cliprdr-v0.1.3)] - 2025-03-12
1016

1117
### <!-- 7 -->Build

0 commit comments

Comments
 (0)