From ebdd4381247845abba019a2db29fe1c24662e4f1 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Wed, 18 Dec 2024 21:23:22 -0600 Subject: [PATCH] chore: Release committed version 1.1.5 --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- README.md | 2 +- action/entrypoint.sh | 2 +- crates/committed/Cargo.toml | 2 +- setup.py | 2 +- 6 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a8290d..5476d93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [1.1.5] - 2024-12-19 + ### Fixes - Don't cause spurious messages on allowed `fixup!` commits @@ -334,7 +336,8 @@ Ignore, just testing Github Actions -[Unreleased]: https://github.com/crate-ci/committed/compare/v1.1.4...HEAD +[Unreleased]: https://github.com/crate-ci/committed/compare/v1.1.5...HEAD +[1.1.5]: https://github.com/crate-ci/committed/compare/v1.1.4...v1.1.5 [1.1.4]: https://github.com/crate-ci/committed/compare/v1.1.3...v1.1.4 [1.1.3]: https://github.com/crate-ci/committed/compare/v1.1.2...v1.1.3 [1.1.2]: https://github.com/crate-ci/committed/compare/v1.1.1...v1.1.2 diff --git a/Cargo.lock b/Cargo.lock index ba0119f..da59eda 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -196,7 +196,7 @@ dependencies = [ [[package]] name = "committed" -version = "1.1.4" +version = "1.1.5" dependencies = [ "anstream", "anstyle", diff --git a/README.md b/README.md index a1d539c..a511982 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ config at this repository: ```yaml repos: - repo: https://github.com/crate-ci/committed - rev: v1.1.4 + rev: v1.1.5 hooks: - id: committed ``` diff --git a/action/entrypoint.sh b/action/entrypoint.sh index aa3d74c..9cc2e76 100755 --- a/action/entrypoint.sh +++ b/action/entrypoint.sh @@ -17,7 +17,7 @@ if [[ -z ${INPUT_COMMITS:-} ]]; then fi if [[ ! -x ${COMMAND} ]]; then - VERSION=1.1.4 + VERSION=1.1.5 log "Downloading 'committed' v${VERSION}" wget --progress=dot:mega https://github.com/crate-ci/committed/releases/download/v${VERSION}/committed-v${VERSION}-x86_64-unknown-linux-musl.tar.gz mkdir -p ${_INSTALL_DIR} diff --git a/crates/committed/Cargo.toml b/crates/committed/Cargo.toml index 1dd2f9e..f7c137f 100644 --- a/crates/committed/Cargo.toml +++ b/crates/committed/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "committed" -version = "1.1.4" +version = "1.1.5" description = "Nitpicking commit history since beabf39" documentation = "https://docs.rs/committed" readme = "../../README.md" diff --git a/setup.py b/setup.py index 8191261..5ebd087 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup -COMMITTED_VERSION = '1.1.4' +COMMITTED_VERSION = '1.1.5' setup(