Skip to content

Commit aee1c79

Browse files
committed
Release 1.4.1
1 parent 5169aa4 commit aee1c79

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

NEWS

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@ NEXT (In development)
88
IMPROVEMENTS
99
~~~~~~~~~~~~
1010

11+
BUG FIXES
12+
~~~~~~~~~
13+
14+
15+
1.4.1
16+
17+
IMPROVEMENTS
18+
~~~~~~~~~~~~
19+
1120
* Add support for Python 3.9
1221
(Thomas Grainger)
1322

@@ -17,12 +26,27 @@ IMPROVEMENTS
1726
* Drop support for Python 2.7, 3.4, and 3.5
1827
(Stephen Finucane)
1928

29+
* Convert python scripts to entry_points.
30+
(Matthew Treinish)
31+
32+
* Migrate CI from travis to GitHub actions.
33+
(Matthew Treinish)
34+
35+
* Add options to output filter to set timestamps.
36+
(Matthew Treinish)
37+
38+
* Remove dependency on unittest2.
39+
(Matěj Cepl)
40+
2041
BUGFIXES
2142
~~~~~~~~
2243

2344
* Fix tests with testtools >= 2.5.0.
2445
(Colin Watson)
2546

47+
* Mark rawstrings as such, fixing warnings.
48+
(Stephen Finucane)
49+
2650
1.4.0
2751
-----
2852

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], [0])
3+
m4_define([SUBUNIT_MICRO_VERSION], [1])
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])

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, 0, 'final', 0)
154+
__version__ = (1, 4, 1, 'final', 0)
155155

156156
PROGRESS_SET = 0
157157
PROGRESS_CUR = 1

0 commit comments

Comments
 (0)