diff --git a/CHANGELOG.md b/CHANGELOG.md index e4054ec..5fc4c2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [0.5.0] - 2024-10-12 +### Details +#### Breaking changes +- Update kube to v0.96 by @alex-karpenko in [#15](https://github.com/alex-karpenko/kube-lease-manager/pull/15) + +#### Changed + ## [0.4.0] - 2024-09-18 ### Details #### Breaking changes @@ -62,6 +69,7 @@ All notable changes to this project will be documented in this file. #### Changed - First release by @alex-karpenko in [#1](https://github.com/alex-karpenko/kube-lease-manager/pull/1) +[0.5.0]: https://github.com/alex-karpenko/kube-lease-manager/compare/v0.4.0..v0.5.0 [0.4.0]: https://github.com/alex-karpenko/kube-lease-manager/compare/v0.3.0..v0.4.0 [0.3.0]: https://github.com/alex-karpenko/kube-lease-manager/compare/v0.2.0..v0.3.0 [0.2.0]: https://github.com/alex-karpenko/kube-lease-manager/compare/v0.1.6..v0.2.0 diff --git a/cliff.toml b/cliff.toml index 6f8832f..78b5410 100644 --- a/cliff.toml +++ b/cliff.toml @@ -33,9 +33,9 @@ body = """ {% for commit in commits|filter(attribute="breaking", value=true) -%} - {{ commit.message | upper_first | trim }}\ - {% if commit.github.username %} by @{{ commit.github.username }}{%- endif -%} - {% if commit.github.pr_number %} in \ - [#{{ commit.github.pr_number }}]({{ self::remote_url() }}/pull/{{ commit.github.pr_number }}) \ + {% if commit.remote.username %} by @{{ commit.remote.username }}{%- endif -%} + {% if commit.remote.pr_number %} in \ + [#{{ commit.remote.pr_number }}]({{ self::remote_url() }}/pull/{{ commit.remote.pr_number }}) \ {%- endif %} {% endfor -%}\ @@ -44,9 +44,9 @@ body = """ {%- for commit in commits %}\ {% if not commit.breaking %} - {{ commit.message | upper_first | trim }}\ - {% if commit.github.username %} by @{{ commit.github.username }}{%- endif -%} - {% if commit.github.pr_number %} in \ - [#{{ commit.github.pr_number }}]({{ self::remote_url() }}/pull/{{ commit.github.pr_number }}) \ + {% if commit.remote.username %} by @{{ commit.remote.username }}{%- endif -%} + {% if commit.remote.pr_number %} in \ + [#{{ commit.remote.pr_number }}]({{ self::remote_url() }}/pull/{{ commit.remote.pr_number }}) \ {%- endif -%} {%- endif -%} {% endfor %}