Skip to content

Commit 14a5bf3

Browse files
committed
📚 the right way to update change log. changelog.yml file, not changelog.rst. #394
1 parent c598358 commit 14a5bf3

File tree

6 files changed

+20
-14
lines changed

6 files changed

+20
-14
lines changed

.moban.cd/changelog.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: moban
22
organisation: moremoban
33
releases:
4+
- changes:
5+
- action: Updated
6+
details:
7+
- "`#393`: Rendered content output to stdout once"
8+
date: 16.08.2020
9+
version: 0.7.10
410
- changes:
511
- action: Updated
612
details:

.moban.cd/moban.yml

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
license: MIT
7-
version: 0.7.9
8-
current_version: 0.7.9
9-
release: 0.7.9
7+
version: 0.7.10
8+
current_version: 0.7.10
9+
release: 0.7.10
1010
branch: master
1111
master: index
1212
command_line_interface: "moban"

CHANGELOG.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
Change log
22
================================================================================
33

4-
0.7.10 - unreleased
4+
0.7.10 - 16.08.2020
55
--------------------------------------------------------------------------------
66

77
**Updated**
88

9-
#. `#393 <https://github.com/moremoban/moban/issues/393>`_: Rendered
10-
content output to stdout twice
9+
#. `#393 <https://github.com/moremoban/moban/issues/393>`_: Rendered content
10+
output to stdout once
1111

1212
0.7.9 - 06.08.2020
1313
--------------------------------------------------------------------------------
1414

1515
**Updated**
1616

1717
#. `#390 <https://github.com/moremoban/moban/issues/390>`_: single render action
18-
will print to stdout by default
18+
will print to stdout by defafult
1919

2020
0.7.8 - 09.06.2020
2121
--------------------------------------------------------------------------------

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
copyright = '2017-2020 Onni Software Ltd.'
2626
author = 'C. W.'
2727
# The short X.Y version
28-
version = '0.7.9'
28+
version = '0.7.10'
2929
# The full version, including alpha/beta/rc tags
30-
release = '0.7.9'
30+
release = '0.7.10'
3131

3232
# -- General configuration ---------------------------------------------------
3333

moban/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.7.9"
1+
__version__ = "0.7.10"
22
__author__ = "C. W."

setup.py

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

4242
NAME = "moban"
4343
AUTHOR = "C. W."
44-
VERSION = "0.7.9"
44+
VERSION = "0.7.10"
4545
4646
LICENSE = "MIT"
4747
ENTRY_POINTS = {
@@ -53,7 +53,7 @@
5353
"General purpose static text generator"
5454
)
5555
URL = "https://github.com/moremoban/moban"
56-
DOWNLOAD_URL = "%s/archive/0.7.9.tar.gz" % URL
56+
DOWNLOAD_URL = "%s/archive/0.7.10.tar.gz" % URL
5757
FILES = ["README.rst", "CONTRIBUTORS.rst", "CHANGELOG.rst"]
5858
KEYWORDS = [
5959
"python",
@@ -96,8 +96,8 @@
9696
}
9797
# You do not need to read beyond this line
9898
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
99-
GS_COMMAND = ("gs moban v0.7.9 " +
100-
"Find 0.7.9 in changelog for more details")
99+
GS_COMMAND = ("gs moban v0.7.10 " +
100+
"Find 0.7.10 in changelog for more details")
101101
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
102102
"Please install gease to enable it.")
103103
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)