diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fd47011..26a8d8e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,26 @@ 1.0.0 (In Development) ====================== +1.0.0rc0 (2024-12-27) +--------------------- + +**Features:** + +- **BREAKING CHANGE:** Only support latest pre-commit 4.0 (#101) + +**Other:** + +- **BREAKING CHANGE:** Update dev Python version to 3.11.1 (#89) +- Sync common project files (#86) +- Do not install all for tests (#87) +- Update Python dev version to 3.10.8 (#88) +- Monthly maintenance (Jan 2023) (#96) +- Bump dev Python version to 3.11.2 (#99) +- Update CI badge and versions table in README (#103) +- (**deps-dev**) bump pytest-cov from 4.1.0 to 5.0.0 in the dev-dependencies group (#102) +- Setup proper permissions for CI Package reusable workflow call (#106) +- Disable attestations on publishing to PyPI from reusable workflow (#109) + 1.0.0b1 (2022-08-09) -------------------- diff --git a/pyproject.toml b/pyproject.toml index 29e3d74..ee788bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,7 +69,7 @@ ignore_missing_imports = true [tool.poetry] name = "pre-commit-run-hook-entry" -version = "1.0.0b1" +version = "1.0.0rc0" description = "Run pre-commit hook entry. Allow to run pre-commit hooks for text editor formatting / linting needs" authors = ["Igor Davydenko "] license = "BSD-3-Clause" diff --git a/src/pre_commit_run_hook_entry/__init__.py b/src/pre_commit_run_hook_entry/__init__.py index b7713fc..1f2ce34 100644 --- a/src/pre_commit_run_hook_entry/__init__.py +++ b/src/pre_commit_run_hook_entry/__init__.py @@ -1,4 +1,4 @@ __prog__ = "pre-commit-run-hook-entry" __author__ = "Igor Davdenko" __license__ = "BSD-3-Clause" -__version__ = "1.0.0b1" +__version__ = "1.0.0rc0"