Release 1.0.0.

This commit is contained in:
Robert Collins 2014-11-19 10:50:46 +13:00
parent a129fa2ff6
commit cc8b57e062
6 changed files with 11 additions and 5 deletions

View File

@ -1,5 +1,5 @@
EXTRA_DIST = \
.bzrignore \
.gitignore \
Apache-2.0 \
BSD \
INSTALL \

3
NEWS
View File

@ -5,6 +5,9 @@ subunit release notes
NEXT (In development)
---------------------
1.0.0
-----
BUGFIXES
~~~~~~~~

2
README
View File

@ -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.

View 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])

View 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

3
setup.cfg Normal file
View File

@ -0,0 +1,3 @@
[bdist_wheel]
universal = 1