From 1966e8c6b069abd762a12ba521076ff25678a9c2 Mon Sep 17 00:00:00 2001 From: chfw Date: Mon, 7 Jan 2019 07:21:31 +0000 Subject: [PATCH] :lipstick: pump up the version number --- CHANGELOG.rst | 9 +++++++++ changelog.yml | 6 ++++++ docs/source/conf.py | 4 ++-- lml.yml | 6 +++--- lml/_version.py | 2 +- setup.py | 8 ++++---- 6 files changed, 25 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9c04cbd..5f0bf77 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,15 @@ Change log ================================================================================ +0.0.9 - 7/1/2019 +-------------------------------------------------------------------------------- + +Updated +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +#. `#11 `_: more test contents for + OpenSuse package validation + 0.0.8 - 4/1/2019 -------------------------------------------------------------------------------- diff --git a/changelog.yml b/changelog.yml index c0ed98d..0b8a907 100644 --- a/changelog.yml +++ b/changelog.yml @@ -1,6 +1,12 @@ name: lml organisation: chfw releases: +- changes: + - action: Updated + details: + - "`#11`: more test contents for OpenSuse package validation" + date: 7/1/2019 + version: 0.0.9 - changes: - action: Updated details: diff --git a/docs/source/conf.py b/docs/source/conf.py index 7102788..a6c609c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -28,9 +28,9 @@ copyright = u'2017-2019 Onni Software Ltd.' author = u'C.W.' # The short X.Y version -version = u'0.0.8' +version = u'0.0.9' # The full version, including alpha/beta/rc tags -release = u'0.0.8' +release = u'0.0.9' # -- General configuration --------------------------------------------------- diff --git a/lml.yml b/lml.yml index 5f52f2f..4525bfe 100644 --- a/lml.yml +++ b/lml.yml @@ -4,9 +4,9 @@ organisation: "chfw" author: "C.W." contact: "wangc_2011@hotmail.com" company: "Onni Software Ltd." -version: "0.0.8" -current_version: "0.0.8" -release: "0.0.8" +version: "0.0.9" +current_version: "0.0.9" +release: "0.0.9" copyright_year: 2017-2019 license: New BSD dependencies: [] diff --git a/lml/_version.py b/lml/_version.py index 8ba051f..4380c4e 100644 --- a/lml/_version.py +++ b/lml/_version.py @@ -1,2 +1,2 @@ -__version__ = "0.0.8" +__version__ = "0.0.9" __author__ = "C.W." diff --git a/setup.py b/setup.py index a545a50..c62cafe 100644 --- a/setup.py +++ b/setup.py @@ -13,14 +13,14 @@ PY26 = PY2 and sys.version_info[1] < 7 NAME = 'lml' AUTHOR = 'C.W.' -VERSION = '0.0.8' +VERSION = '0.0.9' EMAIL = 'wangc_2011@hotmail.com' LICENSE = 'New BSD' DESCRIPTION = ( 'Load me later. A lazy plugin management system.' ) 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'] KEYWORDS = [ 'python', @@ -48,8 +48,8 @@ EXTRAS_REQUIRE = {} # 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 lml v0.0.8 ' + - "Find 0.0.8 in changelog for more details") +GS_COMMAND = ('gs lml v0.0.9 ' + + "Find 0.0.9 in changelog for more details") NO_GS_MESSAGE = ('Automatic github release is disabled. ' + 'Please install gease to enable it.') UPLOAD_FAILED_MSG = (