We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df7e987 commit ba300a5Copy full SHA for ba300a5
NEWS
@@ -1,6 +1,14 @@
1
Queuelib release notes
2
======================
3
4
+Version 1.9.0
5
+-------------
6
+(unreleased)
7
+
8
+* Added support for Python 3.14
9
+* Removed support for Python 3.9 and PyPy 3.10
10
+* Improved linting and CI configuration
11
12
Version 1.8.0
13
-------------
14
(released on March 31st, 2025)
pyproject.toml
@@ -50,6 +50,12 @@ tag_name = "v{new_version}"
50
[[tool.bumpversion.files]]
51
filename = "queuelib/__init__.py"
52
53
+[[tool.bumpversion.files]]
54
+filename = "NEWS"
55
+search = "^\\(unreleased\\)$"
56
+replace = "(released on {now:%B %-d, %Y})"
57
+regex = true
58
59
[tool.coverage.run]
60
branch = true
61
omit = [
0 commit comments