Skip to content

Commit c642bc7

Browse files
chore(release): prepare for publishing
1 parent 52225cc commit c642bc7

File tree

11 files changed

+628
-352
lines changed

11 files changed

+628
-352
lines changed

Cargo.lock

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

crates/ironrdp-graphics/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.6.1](https://github.com/Devolutions/IronRDP/compare/ironrdp-graphics-v0.6.0...ironrdp-graphics-v0.6.1)] - 2025-10-14
10+
11+
### <!-- 7 -->Build
12+
13+
- Bump bytemuck from 1.23.2 to 1.24.0 ([#1008](https://github.com/Devolutions/IronRDP/issues/1008)) ([a24a1fa9e8](https://github.com/Devolutions/IronRDP/commit/a24a1fa9e8f1898b2fcdd41d87660ab9e38f89ed))
14+
15+
16+
917
## [[0.6.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-graphics-v0.5.0...ironrdp-graphics-v0.6.0)] - 2025-06-27
1018

1119
### <!-- 4 -->Bug Fixes

crates/ironrdp-graphics/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-graphics"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
readme = "README.md"
55
description = "RDP image processing primitives"
66
edition.workspace = true

crates/ironrdp-rdpdr-native/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ 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-rdpdr-native-v0.4.0...ironrdp-rdpdr-native-v0.4.1)] - 2025-10-14
10+
11+
12+
913
## [[0.4.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-rdpdr-native-v0.3.0...ironrdp-rdpdr-native-v0.4.0)] - 2025-08-29
1014

1115
### <!-- 7 -->Build

crates/ironrdp-rdpdr-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-rdpdr-native"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
readme = "README.md"
55
description = "Native RDPDR static channel backend implementations for IronRDP"
66
edition.workspace = true
@@ -19,6 +19,6 @@ test = false
1919
ironrdp-core = { path = "../ironrdp-core", version = "0.1" }
2020
ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.6" } # public
2121
ironrdp-svc = { path = "../ironrdp-svc", version = "0.5" } # public
22-
ironrdp-rdpdr = { path = "../ironrdp-rdpdr", version = "0.4" } # public
22+
ironrdp-rdpdr = { path = "../ironrdp-rdpdr", version = "0.5" } # public
2323
nix = { version = "0.30", features = ["fs", "dir"] }
2424
tracing = { version = "0.1", features = ["log"] }

crates/ironrdp-rdpdr/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,24 @@ 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-rdpdr-v0.4.1...ironrdp-rdpdr-v0.5.0)] - 2025-10-14
10+
11+
### <!-- 4 -->Bug Fixes
12+
13+
- Fix incorrect padding when parsing NDR strings ([#1015](https://github.com/Devolutions/IronRDP/issues/1015)) ([a0a3e750c9](https://github.com/Devolutions/IronRDP/commit/a0a3e750c9e4ee9c73b957fbcb26dbc59e57d07d))
14+
15+
When parsing Network Data Representation (NDR) messages, we're supposed
16+
to account for padding at the end of strings to remain aligned on a
17+
4-byte boundary. The existing code doesn't seem to cover all cases, and
18+
the resulting misalignment causes misleading errors when processing the
19+
rest of the message.
20+
21+
### Refactor
22+
23+
- [**breaking**] Enable `unwrap_used` clippy correctness lint ([#965](https://github.com/Devolutions/IronRDP/issues/965)) ([630525deae](https://github.com/Devolutions/IronRDP/commit/630525deae92f39bfed53248ab0fec0e71249322))
24+
25+
26+
927
## [[0.4.1](https://github.com/Devolutions/IronRDP/compare/ironrdp-rdpdr-v0.4.0...ironrdp-rdpdr-v0.4.1)] - 2025-09-04
1028

1129
### <!-- 1 -->Features

crates/ironrdp-rdpdr/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-rdpdr"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
readme = "README.md"
55
description = "RDPDR channel implementation."
66
edition.workspace = true

crates/ironrdp-rdpsnd-native/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.2](https://github.com/Devolutions/IronRDP/compare/ironrdp-rdpsnd-native-v0.4.1...ironrdp-rdpsnd-native-v0.4.2)] - 2025-10-14
10+
11+
### <!-- 7 -->Build
12+
13+
- Bump bytemuck from 1.23.2 to 1.24.0 ([#1008](https://github.com/Devolutions/IronRDP/issues/1008)) ([a24a1fa9e8](https://github.com/Devolutions/IronRDP/commit/a24a1fa9e8f1898b2fcdd41d87660ab9e38f89ed))
14+
15+
16+
917
## [[0.4.1](https://github.com/Devolutions/IronRDP/compare/ironrdp-rdpsnd-native-v0.4.0...ironrdp-rdpsnd-native-v0.4.1)] - 2025-09-24
1018

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

crates/ironrdp-rdpsnd-native/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-rdpsnd-native"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
description = "Native RDPSND static channel backend implementations for IronRDP"
55
edition.workspace = true
66
license.workspace = true

crates/ironrdp/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ 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.13.1](https://github.com/Devolutions/IronRDP/compare/ironrdp-v0.13.0...ironrdp-v0.13.1)] - 2025-10-14
10+
11+
12+
913
## [[0.13.0](https://github.com/Devolutions/IronRDP/compare/ironrdp-v0.12.0...ironrdp-v0.13.0)] - 2025-09-24
1014

1115
### Build

0 commit comments

Comments
 (0)