From 4c99a2dc66a7842118dfca4aa9fd5ec9619d7d99 Mon Sep 17 00:00:00 2001 From: Eric Scouten Date: Sat, 28 Sep 2024 14:05:39 -0700 Subject: [PATCH 1/2] chore: Tweak blank line placement in changelog --- release-plz.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/release-plz.toml b/release-plz.toml index d6cc8eb..7cc67d8 100644 --- a/release-plz.toml +++ b/release-plz.toml @@ -3,6 +3,7 @@ body = """ ## [{{ version | trim_start_matches(pat="v") }}]{%- if release_link -%}({{ release_link }}){% endif %} _{{ timestamp | date(format="%d %B %Y") }}_ + {%- for group, commits in commits | group_by(attribute="group") %} {% if group != "chore" -%} ### {{ group | upper_first }} @@ -15,7 +16,8 @@ _{{ timestamp | date(format="%d %B %Y") }}_ {% endif -%} {% endfor -%} {% endif -%} -{% endfor %} +{% endfor -%} + """ commit_parsers = [ From b82bda1da83b3302d1b37c48426b91e030c887c0 Mon Sep 17 00:00:00 2001 From: Eric Scouten Date: Sat, 28 Sep 2024 14:05:58 -0700 Subject: [PATCH 2/2] chore: release --- CHANGELOG.md | 6 ++++++ macros/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa24e00..3672038 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm Since version 1.1.1, the format of this changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [1.1.2](https://github.com/scouten/async-generic/compare/async-generic-v1.1.1...async-generic-v1.1.2) +_28 September 2024_ +### Fixed + +* Include license files in published crates ([#13](https://github.com/scouten/async-generic/pull/13)) + ## [1.1.1](https://github.com/scouten/async-generic/compare/async-generic-v1.1.0...async-generic-v1.1.1) _30 August 2024_ diff --git a/macros/Cargo.toml b/macros/Cargo.toml index bdac1e6..756dbf4 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-generic" -version = "1.1.1" +version = "1.1.2" description = "Write code that can be both async and synchronous without duplicating it." authors = ["Eric Scouten "] license = "MIT OR Apache-2.0"