Skip to content

Commit 2c9e0d1

Browse files
committed
Release v2026.1.0
1 parent 4ab76f1 commit 2c9e0d1

File tree

7 files changed

+119
-106
lines changed

7 files changed

+119
-106
lines changed

.bumper.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumper]
2-
current_version = "2025.12.1"
2+
current_version = "2026.1.0"
33
versioning_type = "calver"
44

55
[[tool.bumper.files]]

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22
Versions follow [Calendar Versioning](https://calver.org/) (`<YYYY>`.`<MM>`.`<MICRO>`)
33

4+
## [v2026.1.0]
5+
### Fixed
6+
* #12 Fix incorrect filepath specification regex in hook definition
7+
48
## [v2025.12.1]
59
### Added
610
* #8 Add the `check-eol-cached` hook, which utilizies only the cached EOL information and does not incorporate a date-based check

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add this to your `.pre-commit-config.yaml`
1111

1212
```yaml
1313
- repo: https://github.com/sco1/pre-commit-python-eol
14-
rev: v2025.12.1
14+
rev: v2026.1.0
1515
hooks:
1616
- id: check-eol
1717
- id: check-eol-cached

pre_commit_python_eol/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "2025.12.1"
1+
__version__ = "2026.1.0"
22
__url__ = "https://github.com/sco1/pre-commit-check-eol"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pre-commit-python-eol"
3-
version = "2025.12.1"
3+
version = "2026.1.0"
44
description = "A pre-commit hook for enforcing supported Python EOL"
55
license = "MIT"
66
license-files = ["LICENSE"]

tox.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ addopts =
77
--cov-append
88
--cov-report term-missing:skip-covered
99

10+
[coverage:run]
11+
omit =
12+
pre_commit_python_eol/bump_cache.py
13+
1014
[coverage:report]
1115
exclude_also =
1216
if TYPE_CHECKING:

uv.lock

Lines changed: 107 additions & 102 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)