Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): prepare for publishing #615

Merged
merged 3 commits into from
Dec 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 2 additions & 8 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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**] " %}
Expand All @@ -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 %}

Expand Down
13 changes: 13 additions & 0 deletions crates/ironrdp-rdpsnd-native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
2 changes: 1 addition & 1 deletion crates/ironrdp-rdpsnd-native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 12 additions & 0 deletions crates/ironrdp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

### <!-- 6 -->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
Expand Down
2 changes: 1 addition & 1 deletion crates/ironrdp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 1 addition & 2 deletions release-plz.toml
Original file line number Diff line number Diff line change
@@ -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]]
Expand Down
Loading