Skip to content

Commit e456f2a

Browse files
authored
Merge pull request #348 from moremoban/dev
:eggs: 🎡 release 0.6.6
2 parents 72b16af + 52753bb commit e456f2a

File tree

27 files changed

+157
-24
lines changed

27 files changed

+157
-24
lines changed

.moban.cd/changelog.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@ name: moban
22
organisation: moremoban
33
releases:
44
- changes:
5-
- action: Updated
5+
- action: Added
6+
details:
7+
- "support moban file inheritance. one base moban file and child repos can inherit and override"
8+
date: 10.11.2019
9+
version: 0.6.6
10+
- changes:
11+
- action: Added
612
details:
713
- "`#335`: support intermediate targets in moban file"
814
date: 13.10.2019

.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.5
8-
current_version: 0.6.5
9-
release: 0.6.5
7+
version: 0.6.6
8+
current_version: 0.6.6
9+
release: 0.6.6
1010
branch: master
1111
master: index
1212
command_line_interface: "moban"

.moban.d/custom_conf.py.jj2

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
{% include "conf.py.jj2" %}
2-
3-
master_doc = "index"

CHANGELOG.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
Change log
22
================================================================================
33

4+
0.6.6 - 10.11.2019
5+
--------------------------------------------------------------------------------
6+
7+
**Added**
8+
9+
#. support moban file inheritance. one base moban file and child repos can
10+
inherit and override
11+
412
0.6.5 - 13.10.2019
513
--------------------------------------------------------------------------------
614

7-
**Updated**
15+
**Added**
816

917
#. `#335 <https://github.com/moremoban/moban/issues/335>`_: support intermediate
1018
targets in moban file

README.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ moban - 模板 Any template, any data in any location
1111
.. image:: https://codecov.io/gh/moremoban/moban/branch/master/graph/badge.svg
1212
:target: https://codecov.io/gh/moremoban/moban
1313

14+
.. image:: https://badge.fury.io/py/moban.svg
15+
:target: https://pypi.org/project/moban
16+
17+
.. image:: https://pepy.tech/badge/moban
18+
:target: https://pepy.tech/project/moban
19+
1420
.. image:: https://readthedocs.org/projects/moban/badge/?version=latest
1521
:target: http://moban.readthedocs.org/en/latest/
1622

@@ -39,6 +45,18 @@ road map.
3945

4046
All use cases are documented `here <http://moban.readthedocs.org/en/latest/#tutorial>`_
4147

48+
Support
49+
================================================================================
50+
51+
If you like moban, please support me on `github <https://github.com/sponsors/chfw>`_,
52+
`patreon <https://www.patreon.com/bePatron?u=5537627>`_
53+
or `bounty source <https://salt.bountysource.com/teams/chfw-pyexcel>`_ to maintain
54+
the project and develop it further.
55+
56+
With your financial support, I will be able to invest
57+
a little bit more time in coding, documentation and writing interesting extensions.
58+
59+
4260
Installation
4361
================================================================================
4462
You can install it via pip:

docs/README.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ This section covers the use cases for moban. Please check them out individually.
2525
#. `Template files in a zip or tar`_
2626
#. `Template copying from a zip to a zip`_
2727
#. `Intermeidate targets`_
28+
#. `Mobanfile inheritance`_
2829

2930
.. _Jinja2 command line: level-1-jinja2-cli
3031
.. _Template inheritance: level-2-template-inheritance
@@ -48,3 +49,5 @@ This section covers the use cases for moban. Please check them out individually.
4849
.. _Template files in a zip or tar: level-20-templates-configs-in-zip-or-tar
4950
.. _Template copying from a zip to a zip: level-21-copy-templates-into-an-alien-file-system
5051
.. _Intermeidate targets: level-22-intermediate-targets
52+
.. _Mobanfile inheritance: level-23-inherit-organisational-moban-file
53+

docs/conf.py

Lines changed: 2 additions & 3 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.5'
28+
version = '0.6.6'
2929
# The full version, including alpha/beta/rc tags
30-
release = '0.6.5'
30+
release = '0.6.6'
3131

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

@@ -82,5 +82,4 @@
8282
]
8383
intersphinx_mapping.update({
8484
})
85-
8685
master_doc = "index"

docs/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ examples folder.
3737
level-20-templates-configs-in-zip-or-tar/README.rst
3838
level-21-copy-templates-into-an-alien-file-system/README.rst
3939
level-22-intermediate-targets/README.rst
40+
level-23-inherit-organisational-moban-file/README.rst
41+
4042

4143
For more complex use case, please look at `its usage in pyexcel project <http://pyexcel.readthedocs.io/en/latest/guide.html>`_
4244

File renamed without changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
overrides: parent.moban.yaml
2+
targets:
3+
- output_a: template_a.jj2

0 commit comments

Comments
 (0)