From 16cce07296ad0e7d0bb8e4f36845af966d15811e Mon Sep 17 00:00:00 2001 From: Charlie Liu Date: Thu, 15 Nov 2018 12:32:21 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9A=20Update=20changelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .moban.cd/changelog.yml | 6 ++++++ CHANGELOG.rst | 9 +++++++++ setup.py | 4 +--- 3 files changed, 16 insertions(+), 3 deletions(-) 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