Skip to content

Commit 4119912

Browse files
committed
🥚 🎡 release 0.3.4.1 to fix 0.3.4, missing contributors.rst. fix #137
1 parent 68e1c57 commit 4119912

File tree

8 files changed

+26
-11
lines changed

8 files changed

+26
-11
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+
- "`#137`: missing contributors.rst file"
8+
date: 28-11-2018
9+
version: 0.3.4.1
410
- changes:
511
- action: Added
612
details:

.moban.cd/moban.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ organisation: moremoban
33
author: C. W.
44
55
license: MIT
6-
version: 0.3.4
7-
current_version: 0.3.4
8-
release: 0.3.4
6+
version: 0.3.4.1
7+
current_version: 0.3.4.1
8+
release: 0.3.4.1
99
branch: master
1010
command_line_interface: "moban"
1111
entry_point: "moban.main:main"

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.3.4.1 - 28-11-2018
5+
--------------------------------------------------------------------------------
6+
7+
Updated
8+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
10+
#. `#137 <https://github.com/moremoban/moban/issues/137>`_: missing
11+
contributors.rst file
12+
413
0.3.4 - 18-11-2018
514
--------------------------------------------------------------------------------
615

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
include README.rst
22
include LICENSE
33
include CHANGELOG.rst
4+
include CONTRIBUTORS.rst

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
author = u'C. W.'
2929

3030
# The short X.Y version
31-
version = u'0.3.4'
31+
version = u'0.3.4.1'
3232
# The full version, including alpha/beta/rc tags
33-
release = u'0.3.4'
33+
release = u'0.3.4.1'
3434

3535

3636
# -- General configuration ---------------------------------------------------

moban/_version.py

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

mobanfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ targets:
1313
- .travis.yml: travis.yml
1414
- requirements.txt: requirements.txt.jj2
1515
- .gitignore: moban_gitignore.jj2
16-
- MANIFEST.in: MANIFEST.in.jj2
1716
- output: CHANGELOG.rst
1817
configuration: changelog.yml
1918
template: CHANGELOG.rst.jj2

setup.py

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

1414
NAME = 'moban'
1515
AUTHOR = 'C. W.'
16-
VERSION = '0.3.4'
16+
VERSION = '0.3.4.1'
1717
1818
LICENSE = 'MIT'
1919
ENTRY_POINTS = {
@@ -25,7 +25,7 @@
2525
'Yet another jinja2 cli command for static text generation'
2626
)
2727
URL = 'https://github.com/moremoban/moban'
28-
DOWNLOAD_URL = '%s/archive/0.3.4.tar.gz' % URL
28+
DOWNLOAD_URL = '%s/archive/0.3.4.1.tar.gz' % URL
2929
FILES = ['README.rst', 'CONTRIBUTORS.rst', 'CHANGELOG.rst']
3030
KEYWORDS = [
3131
'python',
@@ -60,8 +60,8 @@
6060
# You do not need to read beyond this line
6161
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
6262
sys.executable)
63-
GS_COMMAND = ('gs moban v0.3.4 ' +
64-
"Find 0.3.4 in changelog for more details")
63+
GS_COMMAND = ('gs moban v0.3.4.1 ' +
64+
"Find 0.3.4.1 in changelog for more details")
6565
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
6666
'Please install gease to enable it.')
6767
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)