Skip to content

Commit b3bbbd4

Browse files
committed
bump: release 2.19.1 → 2.20.0
Automatically generated by Commitizen.
1 parent 62cfc17 commit b3bbbd4

3 files changed

Lines changed: 24 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [semantic versioning](https://packaging.python.org/en/latest/discussions/versioning/#semantic-versioning-vs-calendar-versioning) and [pre-release versioning](https://packaging.python.org/en/latest/discussions/versioning/) schemes recommended by the Python Packaging Authority [here](https://packaging.python.org/en/latest/specifications/version-specifiers/). The format of this file is loosely based on [Keep a Changelog](https://keepachangelog.com/).
66

7+
## v2.20.0 (2026-05-25)
8+
9+
### Feat
10+
11+
- add support for Python 3.14 (#1153)
12+
13+
### Fix
14+
15+
- make the generated Simple Index (see PEP 503) better navigatable (#1130)
16+
- update pylint settings and remove perflint because it does not (currently) work for pylint 4 (#1123)
17+
- **deps**: add a 3-day cooldown period for Dependabot updates (#1180)
18+
- make very very sure that pip prune uses only wheels (from the wheelhouse), and prevent accidentally building a wheel (#1151)
19+
- don’t print warning about upgrading the venv if the venv wasn’t upgraded yet (#1150)
20+
- declare Makefile goal as .PHONY (as it ought to be) (#1127)
21+
- the generated build epoch belongs to the generated wheel, and thus both files should be generated using the same recipe (#1126)
22+
- **deps**: have Dependabot update the pre-commit hooks (#1156)
23+
24+
### Refactor
25+
26+
- add Makefile variables for both source and binary distributions, and simplify rules a bit using these variables (#1129)
27+
- simplify handling of the PYTHON environment variable by make (#1128)
28+
729
## v2.19.1 (2026-04-24)
830

931
### Fix

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ version_files = [
105105
"src/package/__init__.py:__version__",
106106
]
107107
major_version_zero = false
108-
version = "2.19.1"
108+
version = "2.20.0"
109109

110110

111111
# https://github.com/pytest-dev/pytest-cov

src/package/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
# The version of this package. There's no comprehensive, official list of other
1010
# magic constants, so we stick with this one only for now. See also this conversation:
1111
# https://stackoverflow.com/questions/38344848/is-there-a-comprehensive-table-of-pythons-magic-constants
12-
__version__ = "2.19.1"
12+
__version__ = "2.20.0"

0 commit comments

Comments
 (0)