Skip to content

Commit

Permalink
🥚 🎡 release 0.0.6 instead
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed May 4, 2019
1 parent 248d579 commit 10d504d
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 15 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/moremoban/yehua/issues/6>`_: provide Pipfile for
pipenv

Expand Down
11 changes: 9 additions & 2 deletions changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------

Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

NAME = "yehua"
AUTHOR = "C.W."
VERSION = "0.0.5"
VERSION = "0.0.6"
EMAIL = "[email protected]"
LICENSE = "New BSD"
ENTRY_POINTS = {
Expand All @@ -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",
Expand Down Expand Up @@ -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 = (
Expand Down
6 changes: 3 additions & 3 deletions yehua.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ organisation: "moremoban"
author: "C.W."
contact: "[email protected]"
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"
Expand Down
2 changes: 1 addition & 1 deletion yehua/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from yehua._version import __version__, __author__ # noqa: F401
from yehua._version import __author__, __version__ # noqa: F401
2 changes: 1 addition & 1 deletion yehua/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Auto generated by moban
__version__ = '0.0.5'
__version__ = '0.0.6'
__author__ = 'C.W.'

0 comments on commit 10d504d

Please sign in to comment.