diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3e8c001..05963e9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"1.3.1"} +{".":"1.3.2"} diff --git a/CHANGELOG.md b/CHANGELOG.md index a75bc98..d1fac66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## [1.3.2](https://github.com/opensource-nepal/commitlint/compare/v1.3.1...v1.3.2) (2025-11-23) + + +### Bug Fixes + +* check only first line for ignoring auto generated commits ([#80](https://github.com/opensource-nepal/commitlint/issues/80)) ([d4867b0](https://github.com/opensource-nepal/commitlint/commit/d4867b0e8f5ac23668c1d2f1299ac25bee9d0580)) + ## [1.3.1](https://github.com/opensource-nepal/commitlint/compare/v1.3.0...v1.3.1) (2025-08-25) diff --git a/pyproject.toml b/pyproject.toml index 6acc15d..306397e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "commitlint" -version = "1.3.1" # x-release-please-version +version = "1.3.2" # x-release-please-version description = "commitlint is a pre-commit hook designed to lint your commit messages according to the Conventional Commits standard." authors = [ "Ajesh Sen Thapa ", diff --git a/src/commitlint/__version__.py b/src/commitlint/__version__.py index 557736e..aaf81f6 100644 --- a/src/commitlint/__version__.py +++ b/src/commitlint/__version__.py @@ -3,4 +3,4 @@ NOTE: The version is auto-updated by release-please action. """ -__version__ = "1.3.1" # x-release-please-version +__version__ = "1.3.2" # x-release-please-version