Release 1.0.0.
authorRobert Collins <robertc@robertcollins.net>
Tue, 18 Nov 2014 21:50:46 +0000 (10:50 +1300)
committerRobert Collins <robertc@robertcollins.net>
Tue, 18 Nov 2014 21:50:46 +0000 (10:50 +1300)
Makefile.am
NEWS
README
configure.ac
python/subunit/__init__.py
setup.cfg [new file with mode: 0644]

index e8f018e2115f86e751fad880c392493a6a7d83ad..765ae4073b8502eebe3aa27e7c4e17728f31e40d 100644 (file)
@@ -1,5 +1,5 @@
 EXTRA_DIST =  \
-       .bzrignore \
+       .gitignore \
        Apache-2.0 \
        BSD \
        INSTALL \
diff --git a/NEWS b/NEWS
index ed281acd9c58300681dc436f8bfef7ea32919a20..7bc8ee6a9281ddb21a03974f2c6eb03bccb350d6 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,9 @@ subunit release notes
 NEXT (In development)
 ---------------------
 
+1.0.0
+-----
+
 BUGFIXES
 ~~~~~~~~
 
diff --git a/README b/README
index dab8be7e684c107b479e161ca8d9430e074387e4..76a74184ac2160f92b13505fb4f33d225fa687be 100644 (file)
--- a/README
+++ b/README
@@ -464,7 +464,7 @@ Releases
 * Update versions in configure.ac and python/subunit/__init__.py.
 * Update NEWS.
 * Do a make distcheck, which will update Makefile etc.
-* Do a PyPI release: PYTHONPATH=../../python python ../../setup.py sdist upload -s
+* Do a PyPI release: PYTHONPATH=../../python python ../../setup.py sdist bdist_wheel upload -s
 * Upload the regular one to LP.
 * Push a tagged commit.
 
index ef1a048c85cf7e4a5b0f130698a705d3bebf7277..47071c5c2fbc2d2333d8e056836e54e1488a52be 100644 (file)
@@ -1,6 +1,6 @@
-m4_define([SUBUNIT_MAJOR_VERSION], [0])
+m4_define([SUBUNIT_MAJOR_VERSION], [1])
 m4_define([SUBUNIT_MINOR_VERSION], [0])
-m4_define([SUBUNIT_MICRO_VERSION], [21])
+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]))
 AC_PREREQ([2.59])
index ca873b37c614b101bbccb4c89854d2a54ff22de9..7f0aa8cd44dae67d93f067ef1245fc2840ab4cff 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, 21, 'final', 0)
+__version__ = (1, 0, 0, 'final', 0)
 
 PROGRESS_SET = 0
 PROGRESS_CUR = 1
diff --git a/setup.cfg b/setup.cfg
new file mode 100644 (file)
index 0000000..b8a1655
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,3 @@
+[bdist_wheel]
+universal = 1
+