From 41199124a08538c9d42985467b424a5fd110b66f Mon Sep 17 00:00:00 2001 From: chfw Date: Tue, 27 Nov 2018 21:54:22 +0000 Subject: [PATCH] :egg: :ferris_wheel: release 0.3.4.1 to fix 0.3.4, missing contributors.rst. fix #137 --- .moban.cd/changelog.yml | 6 ++++++ .moban.cd/moban.yml | 6 +++--- CHANGELOG.rst | 9 +++++++++ MANIFEST.in | 1 + docs/conf.py | 4 ++-- moban/_version.py | 2 +- mobanfile | 1 - setup.py | 8 ++++---- 8 files changed, 26 insertions(+), 11 deletions(-) diff --git a/.moban.cd/changelog.yml b/.moban.cd/changelog.yml index 7f32d02b..be4c1ca7 100644 --- a/.moban.cd/changelog.yml +++ b/.moban.cd/changelog.yml @@ -1,6 +1,12 @@ name: moban organisation: moremoban releases: +- changes: + - action: Updated + details: + - "`#137`: missing contributors.rst file" + date: 28-11-2018 + version: 0.3.4.1 - changes: - action: Added details: diff --git a/.moban.cd/moban.yml b/.moban.cd/moban.yml index 8acdcbc6..b0e8d808 100644 --- a/.moban.cd/moban.yml +++ b/.moban.cd/moban.yml @@ -3,9 +3,9 @@ organisation: moremoban author: C. W. contact: wangc_2011@hotmail.com license: MIT -version: 0.3.4 -current_version: 0.3.4 -release: 0.3.4 +version: 0.3.4.1 +current_version: 0.3.4.1 +release: 0.3.4.1 branch: master command_line_interface: "moban" entry_point: "moban.main:main" diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6ba1bd6c..6a5a7052 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,15 @@ Change log ================================================================================ +0.3.4.1 - 28-11-2018 +-------------------------------------------------------------------------------- + +Updated +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +#. `#137 `_: missing + contributors.rst file + 0.3.4 - 18-11-2018 -------------------------------------------------------------------------------- diff --git a/MANIFEST.in b/MANIFEST.in index c2e4b1b1..8a80a6dd 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ include README.rst include LICENSE include CHANGELOG.rst +include CONTRIBUTORS.rst \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 0ecd538f..94e49034 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,9 +28,9 @@ author = u'C. W.' # The short X.Y version -version = u'0.3.4' +version = u'0.3.4.1' # The full version, including alpha/beta/rc tags -release = u'0.3.4' +release = u'0.3.4.1' # -- General configuration --------------------------------------------------- diff --git a/moban/_version.py b/moban/_version.py index a55fecff..6dc988ea 100644 --- a/moban/_version.py +++ b/moban/_version.py @@ -1,2 +1,2 @@ -__version__ = "0.3.4" +__version__ = "0.3.4.1" __author__ = "C. W." diff --git a/mobanfile b/mobanfile index eedcd589..36728477 100644 --- a/mobanfile +++ b/mobanfile @@ -13,7 +13,6 @@ targets: - .travis.yml: travis.yml - requirements.txt: requirements.txt.jj2 - .gitignore: moban_gitignore.jj2 - - MANIFEST.in: MANIFEST.in.jj2 - output: CHANGELOG.rst configuration: changelog.yml template: CHANGELOG.rst.jj2 diff --git a/setup.py b/setup.py index 6b9e6ff0..ca970f2d 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ NAME = 'moban' AUTHOR = 'C. W.' -VERSION = '0.3.4' +VERSION = '0.3.4.1' EMAIL = 'wangc_2011@hotmail.com' LICENSE = 'MIT' ENTRY_POINTS = { @@ -25,7 +25,7 @@ 'Yet another jinja2 cli command for static text generation' ) URL = 'https://github.com/moremoban/moban' -DOWNLOAD_URL = '%s/archive/0.3.4.tar.gz' % URL +DOWNLOAD_URL = '%s/archive/0.3.4.1.tar.gz' % URL FILES = ['README.rst', 'CONTRIBUTORS.rst', 'CHANGELOG.rst'] KEYWORDS = [ 'python', @@ -60,8 +60,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 moban v0.3.4 ' + - "Find 0.3.4 in changelog for more details") +GS_COMMAND = ('gs moban v0.3.4.1 ' + + "Find 0.3.4.1 in changelog for more details") NO_GS_MESSAGE = ('Automatic github release is disabled. ' + 'Please install gease to enable it.') UPLOAD_FAILED_MSG = (