From e10c8555d0b21ed71202596a056ace0fa8386c6e Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 22 Feb 2016 14:32:16 +0100 Subject: post-release: set version to 0.6 --- doc/conf.py | 3 +-- setup.py | 6 ++++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 7e1d91c..bd57918 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -51,9 +51,8 @@ copyright = u'2014, Victor Stinner' # built documents. # # The short X.Y version. -version = '0.5' # The full version, including alpha/beta/rc tags. -release = '0.5' +version = release = '0.6' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 712b54d..776720b 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,9 @@ # # - hg tag X.Y # - hg push -# - python setup.py sdist bdist_wheel register upload +# - python setup.py sdist register upload +# WARNING: don't publish binary wheel packages, since setup.py +# hardcodes dependencies depending on the Python version. # - increment version in setup.py and doc/conf.py # - hg ci && hg push # @@ -53,7 +55,7 @@ with open("README") as fp: install_options = { "name": "aioeventlet", - "version": "0.5", + "version": "0.6", "license": "Apache License 2.0", "author": 'Victor Stinner', "author_email": 'victor.stinner@gmail.com', -- cgit v1.2.1