diff --git a/Cargo.lock b/Cargo.lock index e18716e06..b91c8cb98 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -977,9 +977,9 @@ dependencies = [ [[package]] name = "crossbeam-deque" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" +checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" dependencies = [ "crossbeam-epoch", "crossbeam-utils", @@ -996,9 +996,9 @@ dependencies = [ [[package]] name = "crossbeam-utils" -version = "0.8.20" +version = "0.8.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" [[package]] name = "crossterm" @@ -2306,7 +2306,7 @@ checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708" [[package]] name = "ironrdp" -version = "0.7.1" +version = "0.7.2" dependencies = [ "anyhow", "async-trait", @@ -2628,7 +2628,7 @@ dependencies = [ [[package]] name = "ironrdp-rdpsnd-native" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "cpal", diff --git a/cliff.toml b/cliff.toml index 2cdd5a5d0..e077a924d 100644 --- a/cliff.toml +++ b/cliff.toml @@ -27,13 +27,7 @@ body = """ {%- for commit in commits %} -{%- if commit.scope %} - {%- set scope = "_" ~ commit.scope ~ "_: " %} - {%- set message = commit.message %} -{%- else %} - {%- set scope = "" %} - {%- set message = commit.message | upper_first %} -{%- endif %} +{%- set message = commit.message | upper_first %} {%- if commit.breaking %} {%- set breaking = "[**breaking**] " %} @@ -45,7 +39,7 @@ body = """ {%- set commit_url = "https://github.com/Devolutions/IronRDP/commit/" ~ commit.id %} {%- set commit_link = "[" ~ short_sha ~ "](" ~ commit_url ~ ")" %} -- {{ scope }}{{ breaking }}{{ message }} ({{ commit_link }}) \ +- {{ breaking }}{{ message }} ({{ commit_link }}) \ {% if commit.body %}\n\n {{ commit.body | replace(from="\n", to="\n ") }}{% endif %} {%- endfor %} diff --git a/crates/ironrdp-rdpsnd-native/CHANGELOG.md b/crates/ironrdp-rdpsnd-native/CHANGELOG.md new file mode 100644 index 000000000..f718fb988 --- /dev/null +++ b/crates/ironrdp-rdpsnd-native/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + + +## [[0.1.1](https://github.com/Devolutions/IronRDP/compare/ironrdp-rdpsnd-native-v0.1.0...ironrdp-rdpsnd-native-v0.1.1)] - 2024-12-15 + +### Other + +- Symlinks to license files in packages ([#604](https://github.com/Devolutions/IronRDP/pull/604)) ([6c2de344c2](https://github.com/Devolutions/IronRDP/commit/6c2de344c2dd93ce9621834e0497ed7c3bfaf91a)) diff --git a/crates/ironrdp-rdpsnd-native/Cargo.toml b/crates/ironrdp-rdpsnd-native/Cargo.toml index 859ba22f8..ae8e5b6c7 100644 --- a/crates/ironrdp-rdpsnd-native/Cargo.toml +++ b/crates/ironrdp-rdpsnd-native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ironrdp-rdpsnd-native" -version = "0.1.0" +version = "0.1.1" description = "Native RDPSND static channel backend implementations for IronRDP" edition.workspace = true license.workspace = true diff --git a/crates/ironrdp/CHANGELOG.md b/crates/ironrdp/CHANGELOG.md index 5ba39c241..12328a700 100644 --- a/crates/ironrdp/CHANGELOG.md +++ b/crates/ironrdp/CHANGELOG.md @@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [[0.7.2](https://github.com/Devolutions/IronRDP/compare/ironrdp-v0.7.1...ironrdp-v0.7.2)] - 2024-12-15 + +### Documentation + +- Fix server example ([#616](https://github.com/Devolutions/IronRDP/pull/616)) ([02c6fd5dfe](https://github.com/Devolutions/IronRDP/commit/02c6fd5dfe142b7cc6f15cb17292504657818498)) + + The rt-multi-thread feature of tokio is not enabled when compiling the + example alone (without feature unification from other crates of the + workspace). + + + ## [[0.7.1](https://github.com/Devolutions/IronRDP/compare/ironrdp-v0.7.0...ironrdp-v0.7.1)] - 2024-12-14 ### Other diff --git a/crates/ironrdp/Cargo.toml b/crates/ironrdp/Cargo.toml index b69ce805e..9a37b4298 100644 --- a/crates/ironrdp/Cargo.toml +++ b/crates/ironrdp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ironrdp" -version = "0.7.1" +version = "0.7.2" readme = "README.md" description = "A meta crate re-exporting IronRDP crates for convenience" edition.workspace = true diff --git a/release-plz.toml b/release-plz.toml index d41a48cc6..b88dcc14d 100644 --- a/release-plz.toml +++ b/release-plz.toml @@ -1,11 +1,10 @@ [workspace] dependencies_update = true -git_release_enable = true +git_release_enable = false semver_check = true pr_branch_prefix = "release-plz/" pr_name = "chore(release): prepare for publishing" changelog_config = "cliff.toml" -git_release_enable = false release_commits = "^(feat|docs|fix|build|perf)" [[package]]