Skip to content

Commit dfde084

Browse files
committed
:eggs: 🎡 ready for 0.8.1 release
1 parent a361a11 commit dfde084

File tree

6 files changed

+26
-10
lines changed

6 files changed

+26
-10
lines changed

.moban.cd/changelog.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
name: moban
22
organisation: moremoban
33
releases:
4+
- changes:
5+
- action: Fixed
6+
details:
7+
- "`#399`: content processor should be called only once"
8+
- "content processor shall pass on options to content processors"
9+
date: 04.09.2020
10+
version: 0.8.1
411
- changes:
512
- action: Removed
613
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: chfw
55
contact: wangc_2011@hotmail.com
66
license: MIT
7-
version: 0.8.0
8-
current_version: 0.8.0
9-
release: 0.8.0
7+
version: 0.8.1
8+
current_version: 0.8.1
9+
release: 0.8.1
1010
branch: master
1111
master: index
1212
command_line_interface: "moban"

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Change log
22
================================================================================
33

4+
0.8.1 - 04.09.2020
5+
--------------------------------------------------------------------------------
6+
7+
**Fixed**
8+
9+
#. `#399 <https://github.com/moremoban/moban/issues/399>`_: content processor
10+
should be called only once
11+
#. content processor shall pass on options to content processors
12+
413
0.8.0 - 02.09.2020
514
--------------------------------------------------------------------------------
615

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 = 'chfw'
2727
# The short X.Y version
28-
version = '0.8.0'
28+
version = '0.8.1'
2929
# The full version, including alpha/beta/rc tags
30-
release = '0.8.0'
30+
release = '0.8.1'
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.8.0"
1+
__version__ = "0.8.1"
22
__author__ = "chfw"

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 = "chfw"
44-
VERSION = "0.8.0"
44+
VERSION = "0.8.1"
4545
EMAIL = "wangc_2011@hotmail.com"
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.8.0.tar.gz" % URL
56+
DOWNLOAD_URL = "%s/archive/0.8.1.tar.gz" % URL
5757
FILES = ["README.rst", "CONTRIBUTORS.rst", "CHANGELOG.rst"]
5858
KEYWORDS = [
5959
"python",
@@ -97,8 +97,8 @@
9797
}
9898
# You do not need to read beyond this line
9999
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
100-
GS_COMMAND = ("gs moban v0.8.0 " +
101-
"Find 0.8.0 in changelog for more details")
100+
GS_COMMAND = ("gs moban v0.8.1 " +
101+
"Find 0.8.1 in changelog for more details")
102102
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
103103
"Please install gease to enable it.")
104104
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)