From 10d504d2e91fb452c806b6515601c97ba09bd125 Mon Sep 17 00:00:00 2001 From: chfw Date: Sat, 4 May 2019 22:38:41 +0100 Subject: [PATCH] :egg: :ferris_wheel: release 0.0.6 instead --- CHANGELOG.rst | 15 +++++++++++++-- changelog.yml | 11 +++++++++-- docs/source/conf.py | 4 ++-- setup.py | 8 ++++---- yehua.yaml | 6 +++--- yehua/__init__.py | 2 +- yehua/_version.py | 2 +- 7 files changed, 33 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8b4bc11..53273d1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,15 +1,26 @@ Change log ================================================================================ -0.0.5 - 04/15/2019 +0.0.6 - 04/15/2019 -------------------------------------------------------------------------------- -Added +Updated ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ #. upgrade yehua to use pypi-mobans-pkg version 0.0.5 + +Updated +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + #. generated project will have four new files: pipfile, lint.sh, changelog.yml and Makefile + +0.0.5 - 08/11/2018 +-------------------------------------------------------------------------------- + +added +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + #. `#6 `_: provide Pipfile for pipenv diff --git a/changelog.yml b/changelog.yml index d9638c7..a91e6f7 100644 --- a/changelog.yml +++ b/changelog.yml @@ -2,12 +2,19 @@ name: yehua organisation: moremoban releases: - changes: - - action: Added + - action: Updated details: - "upgrade yehua to use pypi-mobans-pkg version 0.0.5" + - action: Updated + details: - "generated project will have four new files: pipfile, lint.sh, changelog.yml and Makefile " - - "`#6`: provide Pipfile for pipenv" date: 04/15/2019 + version: 0.0.6 +- changes: + - action: added + details: + - "`#6`: provide Pipfile for pipenv" + date: 08/11/2018 version: 0.0.5 - changes: - action: Updated diff --git a/docs/source/conf.py b/docs/source/conf.py index 87a4e7e..dd24f95 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,9 +26,9 @@ copyright = '2017-2019 Onni Software Ltd.' author = 'C.W.' # The short X.Y version -version = '0.0.5' +version = '0.0.6' # The full version, including alpha/beta/rc tags -release = '0.0.5' +release = '0.0.6' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index a7ebd86..c88f750 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ NAME = "yehua" AUTHOR = "C.W." -VERSION = "0.0.5" +VERSION = "0.0.6" EMAIL = "wangc_2011@hotmail.com" LICENSE = "New BSD" ENTRY_POINTS = { @@ -42,7 +42,7 @@ "a python package." ) URL = "https://github.com/moremoban/yehua" -DOWNLOAD_URL = "%s/archive/0.0.5.tar.gz" % URL +DOWNLOAD_URL = "%s/archive/0.0.6.tar.gz" % URL FILES = ["README.rst", "CHANGELOG.rst"] KEYWORDS = [ "python", @@ -79,8 +79,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 yehua v0.0.5 " + - "Find 0.0.5 in changelog for more details") +GS_COMMAND = ("gs yehua v0.0.6 " + + "Find 0.0.6 in changelog for more details") NO_GS_MESSAGE = ("Automatic github release is disabled. " + "Please install gease to enable it.") UPLOAD_FAILED_MSG = ( diff --git a/yehua.yaml b/yehua.yaml index b4589bc..d6e3452 100644 --- a/yehua.yaml +++ b/yehua.yaml @@ -4,9 +4,9 @@ organisation: "moremoban" author: "C.W." contact: "wangc_2011@hotmail.com" company: "Onni Software Ltd." -version: "0.0.5" -current_version: "0.0.5" -release: "0.0.5" +version: "0.0.6" +current_version: "0.0.6" +release: "0.0.6" copyright_year: 2017-2019 command_line_interface: "yh" entry_point: "yehua.main:main" diff --git a/yehua/__init__.py b/yehua/__init__.py index 46eb11c..b3033de 100644 --- a/yehua/__init__.py +++ b/yehua/__init__.py @@ -1 +1 @@ -from yehua._version import __version__, __author__ # noqa: F401 +from yehua._version import __author__, __version__ # noqa: F401 diff --git a/yehua/_version.py b/yehua/_version.py index 724a028..66521d0 100644 --- a/yehua/_version.py +++ b/yehua/_version.py @@ -1,3 +1,3 @@ # Auto generated by moban -__version__ = '0.0.5' +__version__ = '0.0.6' __author__ = 'C.W.'