diff options
| author | Jelmer Vernooij <jelmer@jelmer.uk> | 2020-03-14 14:59:45 +0000 |
|---|---|---|
| committer | Jelmer Vernooij <jelmer@jelmer.uk> | 2020-03-14 14:59:45 +0000 |
| commit | 0e9f67b9683bf2c8c82edb4e511d9b2c7708d900 (patch) | |
| tree | ee8e24ddba06748a543aec3f21163217eb1f98da | |
| parent | 26d31fa7c34019fad9038addf8114bbb4b656c92 (diff) | |
| download | subunit-git-0e9f67b9683bf2c8c82edb4e511d9b2c7708d900.tar.gz | |
Release 1.4.0.1.4.0
Signed-off-by: Jelmer Vernooij <jelmer@jelmer.uk>
| -rw-r--r-- | NEWS | 30 | ||||
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | python/subunit/__init__.py | 2 |
3 files changed, 32 insertions, 2 deletions
@@ -5,6 +5,36 @@ subunit release notes NEXT (In development) --------------------- +1.4.0 +----- + +IMPROVEMENTS +~~~~~~~~~~~~ + +* Drop Python 3.3 support, and test on 3.5 and 3.6. + (Jelmer Vernooij) + +* Add support for Python 3.7 and 3.8. + (Matthew Treinish) + +* Improve readability of SubUnit v2 spec. + (Sergey Bronnikov) + +* Add license to setup.py. (Sergiu) + +BUGFIXES +~~~~~~~~ + +* Migrate Gtk interface to GObject introspection. + (Haikel Guemar) + +* Fix file open for python3. (Quique Llorente) + +* Check written bytes are not None before summing them to offset. + (Federico Ressi, #1845631) + +* Correctly handle py3 RawIOBase read(). (Stephen Finucane, partially #1813147) + 1.3.0 ----- diff --git a/configure.ac b/configure.ac index 7fa92ad..a06bd48 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ m4_define([SUBUNIT_MAJOR_VERSION], [1]) -m4_define([SUBUNIT_MINOR_VERSION], [3]) +m4_define([SUBUNIT_MINOR_VERSION], [4]) m4_define([SUBUNIT_MICRO_VERSION], [0]) m4_define([SUBUNIT_VERSION], m4_defn([SUBUNIT_MAJOR_VERSION]).m4_defn([SUBUNIT_MINOR_VERSION]).m4_defn([SUBUNIT_MICRO_VERSION])) diff --git a/python/subunit/__init__.py b/python/subunit/__init__.py index 81b773c..17a970a 100644 --- a/python/subunit/__init__.py +++ b/python/subunit/__init__.py @@ -153,7 +153,7 @@ from subunit.v2 import ByteStreamToStreamResult, StreamResultToBytes # If the releaselevel is 'final', then the tarball will be major.minor.micro. # Otherwise it is major.minor.micro~$(revno). -__version__ = (1, 3, 0, 'final', 0) +__version__ = (1, 4, 0, 'final', 0) PROGRESS_SET = 0 PROGRESS_CUR = 1 |
