Skip to content

Commit 00d5510

Browse files
committed
release 1.4.5
1 parent b910646 commit 00d5510

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
subunit release notes
33
---------------------
44

5-
NEXT (In development)
5+
1.4.5 (2025-11-10)
66
---------------------
77

88
BUG FIXES

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
m4_define([SUBUNIT_MAJOR_VERSION], [1])
22
m4_define([SUBUNIT_MINOR_VERSION], [4])
3-
m4_define([SUBUNIT_MICRO_VERSION], [4])
3+
m4_define([SUBUNIT_MICRO_VERSION], [5])
44
m4_define([SUBUNIT_VERSION],
55
m4_defn([SUBUNIT_MAJOR_VERSION]).m4_defn([SUBUNIT_MINOR_VERSION]).m4_defn([SUBUNIT_MICRO_VERSION]))
66
AC_PREREQ([2.59])

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
"Programming Language :: Python",
2121
"Topic :: Software Development :: Testing",
2222
]
23-
dependencies = ["iso8601", "testtools>=2.5"]
23+
dependencies = ["iso8601", "testtools>=2.7"]
2424
description = "Python implementation of subunit test streaming protocol"
2525
dynamic = ["version"]
2626
keywords = ["python", "streaming", "test"]

python/subunit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def test_script_two(self):
144144
# If the releaselevel is 'final', then the tarball will be major.minor.micro.
145145
# Otherwise it is major.minor.micro~$(revno).
146146

147-
__version__ = (1, 4, 4, "final", 0)
147+
__version__ = (1, 4, 5, "final", 0)
148148

149149
version_string = ".".join(map(str, __version__[:3]))
150150

0 commit comments

Comments
 (0)