diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d69b17..245a010 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.2] - 2024-12-02 + - Add `allowed_author_re` ## [1.1.1] - 2024-10-31 @@ -313,7 +315,8 @@ Ignore, just testing Github Actions -[Unreleased]: https://github.com/crate-ci/committed/compare/v1.1.1...HEAD +[Unreleased]: https://github.com/crate-ci/committed/compare/v1.1.2...HEAD +[1.1.2]: https://github.com/crate-ci/committed/compare/v1.1.1...v1.1.2 [1.1.1]: https://github.com/crate-ci/committed/compare/v1.1.0...v1.1.1 [1.1.0]: https://github.com/crate-ci/committed/compare/v1.0.20...v1.1.0 [1.0.20]: https://github.com/crate-ci/committed/compare/v1.0.19...v1.0.20 diff --git a/Cargo.lock b/Cargo.lock index 4787635..ce430e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -196,7 +196,7 @@ dependencies = [ [[package]] name = "committed" -version = "1.1.1" +version = "1.1.2" dependencies = [ "anstream", "anstyle", diff --git a/README.md b/README.md index 3a116ba..533aa77 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.1 + rev: v1.1.2 hooks: - id: committed ``` diff --git a/action/entrypoint.sh b/action/entrypoint.sh index 47a7150..55d0bc2 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.1 + VERSION=1.1.2 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 ce91a1e..4bd1064 100644 --- a/crates/committed/Cargo.toml +++ b/crates/committed/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "committed" -version = "1.1.1" +version = "1.1.2" description = "Nitpicking commit history since beabf39" documentation = "https://docs.rs/committed" readme = "../../README.md" diff --git a/setup.py b/setup.py index 95dc43e..4a5da59 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup -COMMITTED_VERSION = '1.1.1' +COMMITTED_VERSION = '1.1.2' setup(