diff --git a/.moban.cd/changelog.yml b/.moban.cd/changelog.yml index d899c1e7..392eed67 100644 --- a/.moban.cd/changelog.yml +++ b/.moban.cd/changelog.yml @@ -1,6 +1,12 @@ name: moban organisation: moremoban releases: +- changes: + - action: Added + details: + - "global variables to store the target and template file names in the jinja2 engine" + date: 14-11-2018 + version: 0.3.4 - changes: - action: Added details: diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bfa01b0c..f189ae90 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,15 @@ Change log ================================================================================ +0.3.4 - 14-11-2018 +-------------------------------------------------------------------------------- + +Added +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +#. global variables to store the target and template file names in the jinja2 + engine + 0.3.3 - 05-11-2018 -------------------------------------------------------------------------------- diff --git a/setup.py b/setup.py index f79b17a5..3d20e792 100644 --- a/setup.py +++ b/setup.py @@ -5,9 +5,7 @@ import sys import codecs from shutil import rmtree - -from setuptools import Command, setup, find_packages - +from setuptools import setup, find_packages, Command PY2 = sys.version_info[0] == 2 PY26 = PY2 and sys.version_info[1] < 7