Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .moban.cd/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: moban
organisation: moremoban
releases:
- changes:
- action: Added
details:
- "`#328`: update backward compatibility"
date: 10.09.2019
version: 0.6.1
- changes:
- action: Added
details:
Expand Down
8 changes: 5 additions & 3 deletions .moban.cd/moban.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ organisation: moremoban
author: C. W.
contact: wangc_2011@hotmail.com
license: MIT
version: 0.6.0
current_version: 0.6.0
release: 0.6.0
version: 0.6.1
current_version: 0.6.1
release: 0.6.1
branch: master
master: index
command_line_interface: "moban"
Expand All @@ -27,6 +27,8 @@ dependencies:
- appdirs>=1.4.3
- crayons>= 0.1.0
- fs>=2.4.11
- gitfs2>=0.0.1
- pypifs>=0.0.1
- jinja2-fsloader>=0.2.0
description: Yet another jinja2 cli command for static text generation
scm_host: github.com
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Change log
================================================================================

0.6.1 - 10.09.2019
--------------------------------------------------------------------------------

Added
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

#. `#328 <https://github.com/moremoban/moban/issues/328>`_: update backward
compatibility

0.6.0 - 10.09.2019
--------------------------------------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
copyright = '2017-2019 Onni Software Ltd.'
author = 'C. W.'
# The short X.Y version
version = '0.6.0'
version = '0.6.1'
# The full version, including alpha/beta/rc tags
release = '0.6.0'
release = '0.6.1'

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

Expand Down
2 changes: 2 additions & 0 deletions min_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ lml==0.0.9
appdirs==1.4.3
crayons== 0.1.0
fs==2.4.11
gitfs2==0.0.1
pypifs==0.0.1
jinja2-fsloader==0.2.0
2 changes: 1 addition & 1 deletion moban/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.6.0"
__version__ = "0.6.1"
__author__ = "C. W."
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ lml>=0.0.9
appdirs>=1.4.3
crayons>= 0.1.0
fs>=2.4.11
gitfs2>=0.0.1
pypifs>=0.0.1
jinja2-fsloader>=0.2.0
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

NAME = "moban"
AUTHOR = "C. W."
VERSION = "0.6.0"
VERSION = "0.6.1"
EMAIL = "wangc_2011@hotmail.com"
LICENSE = "MIT"
ENTRY_POINTS = {
Expand All @@ -50,7 +50,7 @@
"Yet another jinja2 cli command for static text generation"
)
URL = "https://github.com/moremoban/moban"
DOWNLOAD_URL = "%s/archive/0.6.0.tar.gz" % URL
DOWNLOAD_URL = "%s/archive/0.6.1.tar.gz" % URL
FILES = ["README.rst", "CONTRIBUTORS.rst", "CHANGELOG.rst"]
KEYWORDS = [
"python",
Expand Down Expand Up @@ -81,6 +81,8 @@
"appdirs>=1.4.3",
"crayons>= 0.1.0",
"fs>=2.4.11",
"gitfs2>=0.0.1",
"pypifs>=0.0.1",
"jinja2-fsloader>=0.2.0",
]
SETUP_COMMANDS = {}
Expand All @@ -95,8 +97,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.6.0 " +
"Find 0.6.0 in changelog for more details")
GS_COMMAND = ("gs moban v0.6.1 " +
"Find 0.6.1 in changelog for more details")
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
"Please install gease to enable it.")
UPLOAD_FAILED_MSG = (
Expand Down