diff --git a/brython-pack.yml b/brython-pack.yml index d550ed4..64d2947 100644 --- a/brython-pack.yml +++ b/brython-pack.yml @@ -4,9 +4,9 @@ organisation: "chfw" author: "C.W." contact: "wangc_2011@hotmail.com" company: "C.W." -version: "0.0.1" -current_version: "0.0.1" -release: "0.0.1" +version: "0.0.2" +current_version: "0.0.2" +release: "0.0.2" copyright_year: 2017 command_line_interface: "bp" entry_point: "brython_pack.main:main" diff --git a/brython_pack/_version.py b/brython_pack/_version.py index 4189e9d..ca9f201 100644 --- a/brython_pack/_version.py +++ b/brython_pack/_version.py @@ -1,2 +1,2 @@ -__version__ = '0.0.1' +__version__ = '0.0.2' __author__ = 'C.W.' diff --git a/setup.py b/setup.py index 36fcd36..56bddf1 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ NAME = 'brython-pack' AUTHOR = 'C.W.' -VERSION = '0.0.1' +VERSION = '0.0.2' EMAIL = 'wangc_2011@hotmail.com' LICENSE = 'MIT' ENTRY_POINTS = { @@ -22,7 +22,7 @@ '' ) URL = 'https://github.com/chfw/brython-pack' -DOWNLOAD_URL = '%s/archive/0.0.1.tar.gz' % URL +DOWNLOAD_URL = '%s/archive/0.0.2.tar.gz' % URL FILES = ['README.rst', 'CHANGELOG.rst'] KEYWORDS = [ 'python' @@ -51,8 +51,8 @@ # You do not need to read beyond this line PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format( sys.executable) -GS_COMMAND = ('gs brython-pack v0.0.1 ' + - "Find 0.0.1 in changelog for more details") +GS_COMMAND = ('gs brython-pack v0.0.2 ' + + "Find 0.0.2 in changelog for more details") NO_GS_MESSAGE = ('Automatic github release is disabled. ' + 'Please install gease to enable it.') UPLOAD_FAILED_MSG = ('Upload failed. please run "%s" yourself.')