Release 0.0.20
authorRobert Collins <robertc@robertcollins.net>
Wed, 27 Aug 2014 00:43:14 +0000 (12:43 +1200)
committerRobert Collins <robertc@robertcollins.net>
Wed, 27 Aug 2014 00:43:14 +0000 (12:43 +1200)
Also

* The python-subunit tarball can now have setup run from the current
  directory. (Robert Collins, #1361857)

NEWS
configure.ac
python/subunit/__init__.py
setup.py

diff --git a/NEWS b/NEWS
index 830981a3e7002554bfeccb074cbc93c571a04580..a0b598be85c8bf1e36f6fe6b3f5d3c24cc9f2e33 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,9 @@ subunit release notes
 NEXT (In development)
 ---------------------
 
+0.0.20
+------
+
 BUGFIXES
 ~~~~~~~~
 
@@ -14,6 +17,9 @@ BUGFIXES
 * testscenarios is now a test dependency, not an install dependency.
   (Arfrever Frehtes Taifersar Arahesis, #1292757)
 
+* The python-subunit tarball can now have setup run from the current
+  directory. (Robert Collins, #1361857)
+
 0.0.19
 ------
 
index 07c96ac1e174eb1957c12de0292e33ad750f1c11..869ed9b49db2447e99afa0ad5b36efb8d8f1375d 100644 (file)
@@ -1,6 +1,6 @@
 m4_define([SUBUNIT_MAJOR_VERSION], [0])
 m4_define([SUBUNIT_MINOR_VERSION], [0])
-m4_define([SUBUNIT_MICRO_VERSION], [19])
+m4_define([SUBUNIT_MICRO_VERSION], [20])
 m4_define([SUBUNIT_VERSION],
 m4_defn([SUBUNIT_MAJOR_VERSION]).m4_defn([SUBUNIT_MINOR_VERSION]).m4_defn([SUBUNIT_MICRO_VERSION]))
 AC_PREREQ([2.59])
index ff952c351899381a43c9f33a664c42d583e2e22c..30f7110181e6cf89451c80d23cbad83972fb7926 100644 (file)
@@ -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__ = (0, 0, 19, 'final', 0)
+__version__ = (0, 0, 20, 'final', 0)
 
 PROGRESS_SET = 0
 PROGRESS_CUR = 1
index 91763981172f1179e6a80aeb01f064e755b371e2..42ff760dd2093f355ae644b83189d31f2c61ea90 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -36,7 +36,9 @@ VERSION = (
     or "0.0")
 
 
-os.chdir(os.path.dirname(__file__))
+relpath = os.path.dirname(__file__)
+if relpath:
+    os.chdir(relpath)
 setup(
     name='python-subunit',
     version=VERSION,