Skip to content

Commit

Permalink
Release 1.4.4
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mtreinish committed Nov 17, 2023
1 parent 250fbd5 commit 98aa107
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,24 @@ subunit release notes
NEXT (In development)
---------------------

1.4.4 (2023-11-17)
------------------

BUG FIXES
~~~~~~~~~

* Removed use of deprecated "utc" and "utcfromtimestamp"
methods of "datetime.datetime". (Jake Lishman)

* Fix an issue with date parsing exception handling
(Colin Watson)

IMPROVEMENTS
~~~~~~~~~~~~

* Add support for Python 3.12
(Matthew Treinish)

1.4.3 (2023-09-17)
---------------------

Expand Down
2 changes: 1 addition & 1 deletion python/subunit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def test_script_two(self):
# If the releaselevel is 'final', then the tarball will be major.minor.micro.
# Otherwise it is major.minor.micro~$(revno).

__version__ = (1, 4, 4, 'dev', 0)
__version__ = (1, 4, 4, 'final', 0)

__all__ = [
'join_dir',
Expand Down

0 comments on commit 98aa107

Please sign in to comment.