Skip to content

Commit a823a37

Browse files
authored
Merge pull request #358 from moremoban/dev
🥚 🎡 release 0.6.8
2 parents 65bfc7e + 3877e58 commit a823a37

File tree

13 files changed

+66
-19
lines changed

13 files changed

+66
-19
lines changed

.moban.cd/changelog.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
name: moban
22
organisation: moremoban
33
releases:
4+
- changes:
5+
- action: Updated
6+
details:
7+
- |
8+
since version 0.5.0, when rendering a single file or string, moban would report
9+
'Templated 1 of 0 files', which should have been 'Templated 1 file.'
10+
- action: Removed
11+
details:
12+
- |
13+
python 3.4 support is gone because colorama requires
14+
Python '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*'
15+
date: 7.12.2019
16+
version: 0.6.8
417
- changes:
518
- action: Updated
619
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: C. W.
55
contact: wangc_2011@hotmail.com
66
license: MIT
7-
version: 0.6.7
8-
current_version: 0.6.7
9-
release: 0.6.7
7+
version: 0.6.8
8+
current_version: 0.6.8
9+
release: 0.6.8
1010
branch: master
1111
master: index
1212
command_line_interface: "moban"

.moban.d/moban_travis.yml.jj2

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ python:
1212
- 3.7
1313
- 3.6
1414
- 3.5
15-
- 3.4
1615
- 2.7
17-
- 3.8-dev
16+
- 3.8
1817
{%endblock%}

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ python:
88
- 3.7
99
- 3.6
1010
- 3.5
11-
- 3.4
1211
- 2.7
13-
- 3.8-dev
12+
- 3.8
1413
env:
1514
- MINREQ=0
1615
- MINREQ=1

CHANGELOG.rst

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

4+
0.6.8 - 7.12.2019
5+
--------------------------------------------------------------------------------
6+
7+
**Updated**
8+
9+
#. since version 0.5.0, when rendering a single file or string, moban would
10+
report 'Templated 1 of 0 files', which should have been 'Templated 1 file.'
11+
12+
**Removed**
13+
14+
#. python 3.4 support is gone because colorama requires Python '>=2.7, !=3.0.*,
15+
!=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*'
16+
417
0.6.7 - 1.12.2019
518
--------------------------------------------------------------------------------
619

README.rst

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,6 @@ haml, slim and tornado, can read other data format: json and yaml, and can acces
3838
template file and configuration file in
3939
any location: zip, git, pypi package, s3, etc.
4040

41-
Please look at our issues. We have many more template engines and data format on the
42-
road map.
43-
44-
All use cases are documented `here <http://moban.readthedocs.org/en/latest/#tutorial>`_
45-
4641
Support
4742
================================================================================
4843

@@ -76,6 +71,10 @@ or clone it and install it:
7671
Quick start
7772
================================================================================
7873

74+
75+
.. image:: https://github.com/moremoban/moban/raw/dev/docs/images/moban-in-intro.gif
76+
77+
7978
.. code-block:: bash
8079
8180
$ export HELLO="world"
@@ -120,6 +119,12 @@ moban.output will contain::
120119

121120
Please note that data.yml will take precedence over environment variables.
122121

122+
Moban in live action:
123+
124+
.. image:: https://github.com/moremoban/moban/raw/dev/docs/images/moban-in-pyexcel-demo.gif
125+
126+
All use cases are documented `here <http://moban.readthedocs.org/en/latest/#tutorial>`_
127+
123128

124129
Work with files in a git repo
125130
================================================================================

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
copyright = '2017-2019 Onni Software Ltd.'
2626
author = 'C. W.'
2727
# The short X.Y version
28-
version = '0.6.7'
28+
version = '0.6.8'
2929
# The full version, including alpha/beta/rc tags
30-
release = '0.6.7'
30+
release = '0.6.8'
3131

3232
# -- General configuration ---------------------------------------------------
3333

docs/images/moban-in-intro.gif

309 KB
Loading
225 KB
Loading

moban/_version.py

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

0 commit comments

Comments
 (0)