diff options
| author | Robert Collins <robertc@robertcollins.net> | 2013-05-25 13:05:32 +1200 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2013-05-25 13:05:32 +1200 |
| commit | a87c9c119a8dc1ee0eca7928a51e2e9ea582e960 (patch) | |
| tree | 9944fcc9afda63acb93484280da11dd88d5a9025 | |
| parent | 0fbc8c5a63a565799dc0de9a1ffeaed326c8c9cf (diff) | |
| download | subunit-git-0.0.12.tar.gz | |
Release 0.120.0.12
| -rw-r--r-- | NEWS | 3 | ||||
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | python/subunit/__init__.py | 2 |
3 files changed, 5 insertions, 2 deletions
@@ -5,6 +5,9 @@ subunit release notes NEXT (In development) --------------------- +0.0.12 +------ + BUG FIXES ~~~~~~~~~ diff --git a/configure.ac b/configure.ac index c38e080..7bda69a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ m4_define([SUBUNIT_MAJOR_VERSION], [0]) m4_define([SUBUNIT_MINOR_VERSION], [0]) -m4_define([SUBUNIT_MICRO_VERSION], [11]) +m4_define([SUBUNIT_MICRO_VERSION], [12]) m4_define([SUBUNIT_VERSION], m4_defn([SUBUNIT_MAJOR_VERSION]).m4_defn([SUBUNIT_MINOR_VERSION]).m4_defn([SUBUNIT_MICRO_VERSION])) AC_PREREQ([2.59]) diff --git a/python/subunit/__init__.py b/python/subunit/__init__.py index 082da90..919252e 100644 --- a/python/subunit/__init__.py +++ b/python/subunit/__init__.py @@ -160,7 +160,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__ = (0, 0, 11, 'final', 0) +__version__ = (0, 0, 12, 'final', 0) PROGRESS_SET = 0 PROGRESS_CUR = 1 |
