summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS5
-rw-r--r--configure.ac4
-rw-r--r--python/subunit/__init__.py2
3 files changed, 8 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 1d88d40..d03cc4c 100644
--- a/NEWS
+++ b/NEWS
@@ -5,9 +5,14 @@ subunit release notes
NEXT (In development)
---------------------
+0.0.13
+------
+
IMPROVEMENTS
~~~~~~~~~~~~
+* subunit should now build with automake 1.11 again. (Robert Collins)
+
* `subunit-stats` no longer outputs encapsulated stdout as subunit.
(Robert Collins, #1171987)
diff --git a/configure.ac b/configure.ac
index e523101..42760d5 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], [12])
+m4_define([SUBUNIT_MICRO_VERSION], [13])
m4_define([SUBUNIT_VERSION],
m4_defn([SUBUNIT_MAJOR_VERSION]).m4_defn([SUBUNIT_MINOR_VERSION]).m4_defn([SUBUNIT_MICRO_VERSION]))
AC_PREREQ([2.59])
@@ -19,7 +19,7 @@ AC_SUBST([SUBUNIT_VERSION])
AC_USE_SYSTEM_EXTENSIONS
AC_PROG_CC
AC_PROG_CXX
-AM_PROG_AR
+m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
AM_PROG_CC_C_O
AC_PROG_INSTALL
AC_PROG_LN_S
diff --git a/python/subunit/__init__.py b/python/subunit/__init__.py
index 919252e..5c33e62 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, 12, 'final', 0)
+__version__ = (0, 0, 13, 'final', 0)
PROGRESS_SET = 0
PROGRESS_CUR = 1