diff --git a/CHANGELOG.md b/CHANGELOG.md index 6259e2e..98b4527 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), Numbers in parentheses after entries refer to issues in the [GitHub issue tracker](https://github.com/iafisher/iprecommit/issues). +## [0.5.1] - 2024-11-28 +- The `IPRECOMMIT_TOML_TEMPLATE` environment variable can be used to customize the `precommit.toml` template. +- `iprecommit fix` will stage changes to files after a fix command modifies them. +- `iprecommit-*` commands now ignore files they cannot parse as UTF-8. + ## [0.5.0] - 2024-11-28 - Config format changed from Python (`precommit.py`) to TOML (`precommit.toml`). diff --git a/pyproject.toml b/pyproject.toml index 2043ef2..0c3b462 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "iprecommit" -version = "0.5.0" +version = "0.5.1" description = "Dead-simple Git pre-commit hooks" authors = ["Ian Fisher "] license = "MIT"