Skip to content

Commit 52ba9e7

Browse files
committed
Release 1.4.2.
1 parent e613fd6 commit 52ba9e7

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ IMPROVEMENTS
1111
BUG FIXES
1212
~~~~~~~~~
1313

14+
* Fix "subunit-filter --fixup-expected-failures"
15+
on Python 3. (Jelmer Vernooij)
1416

1517
1.4.1
1618

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ Releases
487487
* Update versions in configure.ac and python/subunit/__init__.py.
488488
* Update NEWS.
489489
* Do a make distcheck, which will update Makefile etc.
490-
* Do a PyPI release: PYTHONPATH=../../python python ../../setup.py sdist bdist_wheel upload -s
490+
* Do a PyPI release: PYTHONPATH=python python setup.py sdist bdist_wheel; twine upload -s dist/*
491491
* Upload the regular one to LP.
492492
* Push a tagged commit.
493493
git push -t origin master:master

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], [1])
3+
m4_define([SUBUNIT_MICRO_VERSION], [2])
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, 1, 'final', 0)
154+
__version__ = (1, 4, 2, 'final', 0)
155155

156156
PROGRESS_SET = 0
157157
PROGRESS_CUR = 1

0 commit comments

Comments
 (0)