From 0c7a7b45ff4262120f7b07393a5cfba65ed63851 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 05:24:33 +0000 Subject: [PATCH] chore: release v1.0.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ src/commitlint/__version__.py | 2 +- 3 files changed, 35 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c17c08f..11fea0f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"1.3.0"} +{".":"1.0.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 8820a97..272dc59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,38 @@ # CHANGELOG +## [1.0.0](https://github.com/golesuman/commitlint/compare/v1.3.0...v1.0.0) (2024-12-03) + + +### Features + +* Add fail_on_error github action parameter ([00bf73f](https://github.com/golesuman/commitlint/commit/00bf73fef7120ceb335dc9ef84a4390a2d1ccb59)) +* add verbose option ([4ec08c1](https://github.com/golesuman/commitlint/commit/4ec08c1cd2f22a67bbfa1fc9ef490ca7f5b1800e)) +* added commitlint cli and pre-commit hooks ([60d361a](https://github.com/golesuman/commitlint/commit/60d361a2d36a181c930ee870cea57fcfa614683a)) +* added error annotation on github actions ([830de67](https://github.com/golesuman/commitlint/commit/830de67d92356085663cd23e5e79c1522b23901e)) +* added strict regex for validation and ignored auto commits ([d092c97](https://github.com/golesuman/commitlint/commit/d092c97235bcbfc8d1117ae7f96799fd6ef684a9)) +* added support for github actions ([34b717a](https://github.com/golesuman/commitlint/commit/34b717acba736b4d5d58cf5cd2ff40a3df02b658)) +* added support for hash, from-hash, and to-hash argument [#6](https://github.com/golesuman/commitlint/issues/6) ([11e20dd](https://github.com/golesuman/commitlint/commit/11e20ddde66ebfe56a15b04c756f3b45297d6782)) +* allow bump commits ([#55](https://github.com/golesuman/commitlint/issues/55)) ([bb8a3b7](https://github.com/golesuman/commitlint/commit/bb8a3b74134f42a48acec18ab87e6a0293c07e84)) +* **cli:** added the quiet option in cli ([b1778c8](https://github.com/golesuman/commitlint/commit/b1778c8dead03eaba7625c67f741e185be19ea49)) +* enhanced actions logging with clear annotations ([#61](https://github.com/golesuman/commitlint/issues/61)) ([7f72e91](https://github.com/golesuman/commitlint/commit/7f72e9108526ef0f05afcb1627d1239ed41324c6)) +* enhanced error message ([9a8c081](https://github.com/golesuman/commitlint/commit/9a8c08173abd3086d14fe4142736d9bfb93ef08f)) +* show version info [#13](https://github.com/golesuman/commitlint/issues/13) ([0a5f9c1](https://github.com/golesuman/commitlint/commit/0a5f9c1e29b8a7beaf4a9a5ce1991935f84e9c7d)) +* support pull_request_target events ([#52](https://github.com/golesuman/commitlint/issues/52)) ([62e1128](https://github.com/golesuman/commitlint/commit/62e11285d5628dff5f67645d1c718e1276478ecb)) + + +### Bug Fixes + +* fix major version tag fetch on pre-commit autoupdate ([#65](https://github.com/golesuman/commitlint/issues/65)) ([dffb36b](https://github.com/golesuman/commitlint/commit/dffb36bf7774910ae14417f57b22a12ff0cb323b)) +* handle commit message starting with # ([#59](https://github.com/golesuman/commitlint/issues/59)) ([ea7683f](https://github.com/golesuman/commitlint/commit/ea7683f2cf265090fda7ddfadfc9853caa05e546)) +* handle the file not found error gracefully ([#46](https://github.com/golesuman/commitlint/issues/46)) ([6c5a65c](https://github.com/golesuman/commitlint/commit/6c5a65c222963f713379739f57273b82cac1a0b0)) +* security updates on commitlint action and workflows ([#48](https://github.com/golesuman/commitlint/issues/48)) ([b98c73f](https://github.com/golesuman/commitlint/commit/b98c73fb68f11b66ec8d3f227c6b129598c28726)) +* updated github actions name and readme docs for version info ([f81c9b5](https://github.com/golesuman/commitlint/commit/f81c9b5c68962e412234e910879b507788a9f3d7)) + + +### Documentation + +* update usage information for v1 ([03d7b5b](https://github.com/golesuman/commitlint/commit/03d7b5ba370532f39b42ae9f2148f7ed08cbb826)) + ## [1.3.0](https://github.com/opensource-nepal/commitlint/compare/v1.2.0...v1.3.0) (2024-08-30) diff --git a/src/commitlint/__version__.py b/src/commitlint/__version__.py index a0328e1..173f006 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.0" # x-release-please-version +__version__ = "1.0.0" # x-release-please-version