💄 pump up the version number

This commit is contained in:
chfw 2019-01-07 07:21:31 +00:00
parent c5991d825c
commit 1966e8c6b0
6 changed files with 25 additions and 10 deletions

View File

@ -1,6 +1,15 @@
Change log Change log
================================================================================ ================================================================================
0.0.9 - 7/1/2019
--------------------------------------------------------------------------------
Updated
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#. `#11 <https://github.com/chfw/lml/issues/11>`_: more test contents for
OpenSuse package validation
0.0.8 - 4/1/2019 0.0.8 - 4/1/2019
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

View File

@ -1,6 +1,12 @@
name: lml name: lml
organisation: chfw organisation: chfw
releases: releases:
- changes:
- action: Updated
details:
- "`#11`: more test contents for OpenSuse package validation"
date: 7/1/2019
version: 0.0.9
- changes: - changes:
- action: Updated - action: Updated
details: details:

View File

@ -28,9 +28,9 @@ copyright = u'2017-2019 Onni Software Ltd.'
author = u'C.W.' author = u'C.W.'
# The short X.Y version # The short X.Y version
version = u'0.0.8' version = u'0.0.9'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = u'0.0.8' release = u'0.0.9'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------

View File

@ -4,9 +4,9 @@ organisation: "chfw"
author: "C.W." author: "C.W."
contact: "wangc_2011@hotmail.com" contact: "wangc_2011@hotmail.com"
company: "Onni Software Ltd." company: "Onni Software Ltd."
version: "0.0.8" version: "0.0.9"
current_version: "0.0.8" current_version: "0.0.9"
release: "0.0.8" release: "0.0.9"
copyright_year: 2017-2019 copyright_year: 2017-2019
license: New BSD license: New BSD
dependencies: [] dependencies: []

View File

@ -1,2 +1,2 @@
__version__ = "0.0.8" __version__ = "0.0.9"
__author__ = "C.W." __author__ = "C.W."

View File

@ -13,14 +13,14 @@ PY26 = PY2 and sys.version_info[1] < 7
NAME = 'lml' NAME = 'lml'
AUTHOR = 'C.W.' AUTHOR = 'C.W.'
VERSION = '0.0.8' VERSION = '0.0.9'
EMAIL = 'wangc_2011@hotmail.com' EMAIL = 'wangc_2011@hotmail.com'
LICENSE = 'New BSD' LICENSE = 'New BSD'
DESCRIPTION = ( DESCRIPTION = (
'Load me later. A lazy plugin management system.' 'Load me later. A lazy plugin management system.'
) )
URL = 'https://github.com/chfw/lml' URL = 'https://github.com/chfw/lml'
DOWNLOAD_URL = '%s/archive/0.0.8.tar.gz' % URL DOWNLOAD_URL = '%s/archive/0.0.9.tar.gz' % URL
FILES = ['README.rst', 'CHANGELOG.rst'] FILES = ['README.rst', 'CHANGELOG.rst']
KEYWORDS = [ KEYWORDS = [
'python', 'python',
@ -48,8 +48,8 @@ EXTRAS_REQUIRE = {}
# You do not need to read beyond this line # You do not need to read beyond this line
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format( PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
sys.executable) sys.executable)
GS_COMMAND = ('gs lml v0.0.8 ' + GS_COMMAND = ('gs lml v0.0.9 ' +
"Find 0.0.8 in changelog for more details") "Find 0.0.9 in changelog for more details")
NO_GS_MESSAGE = ('Automatic github release is disabled. ' + NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
'Please install gease to enable it.') 'Please install gease to enable it.')
UPLOAD_FAILED_MSG = ( UPLOAD_FAILED_MSG = (