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 v1.1.2 #14

Closed
wants to merge 2 commits into from
Closed
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_

Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 3 additions & 1 deletion release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -15,7 +16,8 @@ _{{ timestamp | date(format="%d %B %Y") }}_
{% endif -%}
{% endfor -%}
{% endif -%}
{% endfor %}
{% endfor -%}

"""

commit_parsers = [
Expand Down
Loading