diff --git a/CHANGES.rst b/CHANGES.rst index 47a6169..2ba5b14 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ CHANGES ======= +0.7.2 (2018-04-16) +------------------ + +* Improve parsing of ``${}`` expressions and fix syntax errors reporting in braced expressions. +* Improve parsing of documents with comments before the root element + 0.7.1 (2017-09-11) ------------------ diff --git a/docs/conf.py b/docs/conf.py index ac13136..837aa75 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -42,7 +42,7 @@ # General information about the project. project = u'Kajiki' -copyright = u'2010-2016, Rick Copeland, Nando Florestan and Alessandro Molina' +copyright = u'2010-2018, Rick Copeland, Nando Florestan and Alessandro Molina' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/kajiki/version.py b/kajiki/version.py index 46562b8..b98a1de 100644 --- a/kajiki/version.py +++ b/kajiki/version.py @@ -3,4 +3,4 @@ unicode_literals) __version__ = '0.7' -__release__ = '0.7.2dev1' +__release__ = '0.7.2'