Skip to content

Commit

Permalink
✨ support running moban as module. resolve #76.
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Jul 4, 2018
1 parent b6d9c96 commit c19e1e6
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 7 deletions.
8 changes: 7 additions & 1 deletion .moban.cd/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
name: moban
organisation: moremoban
releases:
- changes:
- action: Added
details:
- "`#76`: support running moban as a module from python command"
date: unreleased
version: 0.2.3
- changes:
- action: Added
details:
- "`#31`: create directory if missing during copying"
- action: Updated
details:
- "`#28`: if a template has been copied once before, it is skipped in the next moban call"
date: unreleased
date: released
version: 0.2.2
- changes:
- action: Updated
Expand Down
4 changes: 2 additions & 2 deletions .moban.cd/moban.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ organisation: moremoban
author: C. W.
contact: wangc_2011@hotmail.com
license: MIT
version: 0.2.2
current_version: 0.2.2
version: 0.2.3
current_version: 0.2.3
release: 0.2.2
branch: master
command_line_interface: "moban"
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
Change log
================================================================================

0.2.2 - unreleased
0.2.3 - unreleased
--------------------------------------------------------------------------------

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

#. `#76 <https://github.com/moremoban/moban/issues/76>`_: support running moban
as a module from python command

0.2.2 - released
--------------------------------------------------------------------------------

Added
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# The short X.Y version
version = u'0.2.2'
# The full version, including alpha/beta/rc tags
release = u'0.2.2'
release = u'0.2.3'


# -- General configuration ---------------------------------------------------
Expand Down
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.2.2'
__version__ = '0.2.3'
__author__ = 'C. W.'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

NAME = 'moban'
AUTHOR = 'C. W.'
VERSION = '0.2.2'
VERSION = '0.2.3'
EMAIL = 'wangc_2011@hotmail.com'
LICENSE = 'MIT'
ENTRY_POINTS = {
Expand Down

0 comments on commit c19e1e6

Please sign in to comment.