Skip to content

Commit 98aa107

Browse files
committed
Release 1.4.4
This commit marks the 1.4.4 release, it updates the version number in the python package and updates the NEWS to document the changes in this small bug fix release.
1 parent 250fbd5 commit 98aa107

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

NEWS

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,24 @@ subunit release notes
55
NEXT (In development)
66
---------------------
77

8+
1.4.4 (2023-11-17)
9+
------------------
10+
11+
BUG FIXES
12+
~~~~~~~~~
13+
814
* Removed use of deprecated "utc" and "utcfromtimestamp"
915
methods of "datetime.datetime". (Jake Lishman)
1016

17+
* Fix an issue with date parsing exception handling
18+
(Colin Watson)
19+
20+
IMPROVEMENTS
21+
~~~~~~~~~~~~
22+
23+
* Add support for Python 3.12
24+
(Matthew Treinish)
25+
1126
1.4.3 (2023-09-17)
1227
---------------------
1328

python/subunit/__init__.py

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

154-
__version__ = (1, 4, 4, 'dev', 0)
154+
__version__ = (1, 4, 4, 'final', 0)
155155

156156
__all__ = [
157157
'join_dir',

0 commit comments

Comments
 (0)