Skip to content

Commit 56f8ba4

Browse files
chore(release): prepare for publishing (#861)
1 parent 3353021 commit 56f8ba4

File tree

16 files changed

+74
-53
lines changed

16 files changed

+74
-53
lines changed

Cargo.lock

Lines changed: 9 additions & 9 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: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,30 @@ 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.5.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-acceptor-v0.4.0...ironrdp-acceptor-v0.5.0)] - 2025-05-27
9+
## [[0.6.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-acceptor-v0.5.0...ironrdp-acceptor-v0.6.0)] - 2025-07-08
1010

1111
### <!-- 1 -->Features
1212

13-
- Make the CredsspSequence type public ([5abd9ff8e0](https://github.com/Devolutions/IronRDP/commit/5abd9ff8e0da8ea48c6747526c4b703a39bf4972))
13+
- [**breaking**] Support for server-side Kerberos (#839) ([33530212c4](https://github.com/Devolutions/IronRDP/commit/33530212c42bf28c875ac078ed2408657831b417))
14+
15+
## [[0.5.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-acceptor-v0.4.0...ironrdp-acceptor-v0.5.0)] - 2025-05-27
1416

17+
### <!-- 1 -->Features
1518

19+
- Make the CredsspSequence type public ([5abd9ff8e0](https://github.com/Devolutions/IronRDP/commit/5abd9ff8e0da8ea48c6747526c4b703a39bf4972))
1620

1721
## [[0.4.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-acceptor-v0.3.1...ironrdp-acceptor-v0.4.0)] - 2025-03-12
1822

1923
### <!-- 7 -->Build
2024

2125
- Bump ironrdp-pdu
2226

23-
24-
2527
## [[0.3.1](https://github.com/Devolutions/IronRDP/compare/ironrdp-acceptor-v0.3.0...ironrdp-acceptor-v0.3.1)] - 2025-03-12
2628

2729
### <!-- 7 -->Build
2830

2931
- Update dependencies (#695) ([c21fa44fd6](https://github.com/Devolutions/IronRDP/commit/c21fa44fd6f3c6a6b74788ff68e83133c1314caa))
3032

31-
3233
## [[0.3.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-acceptor-v0.2.1...ironrdp-acceptor-v0.3.0)] - 2025-01-28
3334

3435
### <!-- 0 -->Security
@@ -58,8 +59,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5859

5960
- Use CDN URLs instead of the blob storage URLs for Devolutions logo (#631) ([dd249909a8](https://github.com/Devolutions/IronRDP/commit/dd249909a894004d4f728d30b3a4aa77a0f8193b))
6061

61-
62-
6362
## [[0.2.1](https://github.com/Devolutions/IronRDP/compare/ironrdp-acceptor-v0.2.0...ironrdp-acceptor-v0.2.1)] - 2024-12-14
6463

6564
### Other

crates/ironrdp-acceptor/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-acceptor"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
readme = "README.md"
55
description = "State machines to drive an RDP connection acceptance sequence"
66
edition.workspace = true
@@ -19,8 +19,8 @@ test = false
1919
ironrdp-core = { path = "../ironrdp-core", version = "0.1", features = ["alloc"] } # public
2020
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.5" } # public
2121
ironrdp-svc = { path = "../ironrdp-svc", version = "0.4" } # public
22-
ironrdp-connector = { path = "../ironrdp-connector", version = "0.5" } # public
23-
ironrdp-async = { path = "../ironrdp-async", version = "0.5" } # public
22+
ironrdp-connector = { path = "../ironrdp-connector", version = "0.6" } # public
23+
ironrdp-async = { path = "../ironrdp-async", version = "0.6" } # public
2424
tracing = { version = "0.1", features = ["log"] }
2525

2626
[lints]

crates/ironrdp-async/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-async"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
readme = "README.md"
55
description = "Provides `Future`s wrapping the IronRDP state machines conveniently"
66
edition.workspace = true
@@ -16,7 +16,7 @@ doctest = false
1616
test = false
1717

1818
[dependencies]
19-
ironrdp-connector = { path = "../ironrdp-connector", version = "0.5" } # public
19+
ironrdp-connector = { path = "../ironrdp-connector", version = "0.6" } # public
2020
ironrdp-core = { path = "../ironrdp-core", version = "0.1", features = ["alloc"] } # public
2121
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.5" } # public
2222
tracing = { version = "0.1", features = ["log"] }

crates/ironrdp-blocking/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-blocking"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
readme = "README.md"
55
description = "Blocking I/O abstraction wrapping the IronRDP state machines conveniently"
66
edition.workspace = true
@@ -16,7 +16,7 @@ doctest = false
1616
test = false
1717

1818
[dependencies]
19-
ironrdp-connector = { path = "../ironrdp-connector", version = "0.5" } # public
19+
ironrdp-connector = { path = "../ironrdp-connector", version = "0.6" } # public
2020
ironrdp-core = { path = "../ironrdp-core", version = "0.1", features = ["alloc"] } # public
2121
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.5" } # public
2222
tracing = { version = "0.1", features = ["log"] }

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.10", features = [
33+
ironrdp = { path = "../ironrdp", version = "0.11", features = [
3434
"session",
3535
"input",
3636
"graphics",
@@ -46,7 +46,7 @@ ironrdp-core = { path = "../ironrdp-core", version = "0.1", features = ["alloc"]
4646
ironrdp-cliprdr-native = { path = "../ironrdp-cliprdr-native", version = "0.3" }
4747
ironrdp-rdpsnd-native = { path = "../ironrdp-rdpsnd-native", version = "0.3" }
4848
ironrdp-tls = { path = "../ironrdp-tls", version = "0.1" }
49-
ironrdp-tokio = { path = "../ironrdp-tokio", version = "0.5", features = ["reqwest"] }
49+
ironrdp-tokio = { path = "../ironrdp-tokio", version = "0.6", features = ["reqwest"] }
5050
ironrdp-rdcleanpath.path = "../ironrdp-rdcleanpath"
5151
ironrdp-dvc-pipe-proxy.path = "../ironrdp-dvc-pipe-proxy"
5252

crates/ironrdp-connector/CHANGELOG.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1-
# Changelog
2-
3-
All notable changes to this project will be documented in this file.
4-
5-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7-
8-
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
9+
## [[0.6.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-connector-v0.5.1...ironrdp-connector-v0.6.0)] - 2025-07-08
10+
11+
### Build
12+
13+
- [**breaking**] Update sspi dependency (#839) ([33530212c4](https://github.com/Devolutions/IronRDP/commit/33530212c42bf28c875ac078ed2408657831b417))
14+
915
## [[0.5.1](https://github.com/Devolutions/IronRDP/compare/ironrdp-connector-v0.5.0...ironrdp-connector-v0.5.1)] - 2025-07-03
1016

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

crates/ironrdp-connector/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-connector"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
readme = "README.md"
55
description = "State machines to drive an RDP connection sequence"
66
edition.workspace = true

crates/ironrdp-futures/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-futures"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
readme = "README.md"
55
description = "`Framed*` traits implementation above futures’s traits"
66
edition.workspace = true
@@ -17,7 +17,7 @@ test = false
1717

1818
[dependencies]
1919
futures-util = { version = "0.3", features = ["io"] } # public
20-
ironrdp-async = { path = "../ironrdp-async", version = "0.5" } # public
20+
ironrdp-async = { path = "../ironrdp-async", version = "0.6" } # public
2121
bytes = "1" # public
2222

2323
[lints]

crates/ironrdp-server/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.7.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-server-v0.6.1...ironrdp-server-v0.7.0)] - 2025-07-08
10+
11+
### Build
12+
13+
- Update sspi dependency (#839) ([33530212c4](https://github.com/Devolutions/IronRDP/commit/33530212c42bf28c875ac078ed2408657831b417))
14+
915
## [[0.6.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-server-v0.5.0...ironrdp-server-v0.6.0)] - 2025-05-27
1016

1117
### <!-- 1 -->Features

0 commit comments

Comments
 (0)