Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 10d504d

Browse files
committed
🥚 🎡 release 0.0.6 instead
1 parent 248d579 commit 10d504d

7 files changed

Lines changed: 33 additions & 15 deletions

File tree

CHANGELOG.rst

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,26 @@
11
Change log
22
================================================================================
33

4-
0.0.5 - 04/15/2019
4+
0.0.6 - 04/15/2019
55
--------------------------------------------------------------------------------
66

7-
Added
7+
Updated
88
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
99

1010
#. upgrade yehua to use pypi-mobans-pkg version 0.0.5
11+
12+
Updated
13+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14+
1115
#. generated project will have four new files: pipfile, lint.sh, changelog.yml
1216
and Makefile
17+
18+
0.0.5 - 08/11/2018
19+
--------------------------------------------------------------------------------
20+
21+
added
22+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
23+
1324
#. `#6 <https://github.com/moremoban/yehua/issues/6>`_: provide Pipfile for
1425
pipenv
1526

changelog.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,19 @@ name: yehua
22
organisation: moremoban
33
releases:
44
- changes:
5-
- action: Added
5+
- action: Updated
66
details:
77
- "upgrade yehua to use pypi-mobans-pkg version 0.0.5"
8+
- action: Updated
9+
details:
810
- "generated project will have four new files: pipfile, lint.sh, changelog.yml and Makefile "
9-
- "`#6`: provide Pipfile for pipenv"
1011
date: 04/15/2019
12+
version: 0.0.6
13+
- changes:
14+
- action: added
15+
details:
16+
- "`#6`: provide Pipfile for pipenv"
17+
date: 08/11/2018
1118
version: 0.0.5
1219
- changes:
1320
- action: Updated

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
copyright = '2017-2019 Onni Software Ltd.'
2727
author = 'C.W.'
2828
# The short X.Y version
29-
version = '0.0.5'
29+
version = '0.0.6'
3030
# The full version, including alpha/beta/rc tags
31-
release = '0.0.5'
31+
release = '0.0.6'
3232

3333
# -- General configuration ---------------------------------------------------
3434

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
NAME = "yehua"
3131
AUTHOR = "C.W."
32-
VERSION = "0.0.5"
32+
VERSION = "0.0.6"
3333
3434
LICENSE = "New BSD"
3535
ENTRY_POINTS = {
@@ -42,7 +42,7 @@
4242
"a python package."
4343
)
4444
URL = "https://github.com/moremoban/yehua"
45-
DOWNLOAD_URL = "%s/archive/0.0.5.tar.gz" % URL
45+
DOWNLOAD_URL = "%s/archive/0.0.6.tar.gz" % URL
4646
FILES = ["README.rst", "CHANGELOG.rst"]
4747
KEYWORDS = [
4848
"python",
@@ -79,8 +79,8 @@
7979
}
8080
# You do not need to read beyond this line
8181
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
82-
GS_COMMAND = ("gs yehua v0.0.5 " +
83-
"Find 0.0.5 in changelog for more details")
82+
GS_COMMAND = ("gs yehua v0.0.6 " +
83+
"Find 0.0.6 in changelog for more details")
8484
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
8585
"Please install gease to enable it.")
8686
UPLOAD_FAILED_MSG = (

yehua.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ organisation: "moremoban"
44
author: "C.W."
55
66
company: "Onni Software Ltd."
7-
version: "0.0.5"
8-
current_version: "0.0.5"
9-
release: "0.0.5"
7+
version: "0.0.6"
8+
current_version: "0.0.6"
9+
release: "0.0.6"
1010
copyright_year: 2017-2019
1111
command_line_interface: "yh"
1212
entry_point: "yehua.main:main"

yehua/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from yehua._version import __version__, __author__ # noqa: F401
1+
from yehua._version import __author__, __version__ # noqa: F401

yehua/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Auto generated by moban
2-
__version__ = '0.0.5'
2+
__version__ = '0.0.6'
33
__author__ = 'C.W.'

0 commit comments

Comments
 (0)