diff --git a/enaml/version.py b/enaml/version.py index 163e162d6..abc6120e7 100644 --- a/enaml/version.py +++ b/enaml/version.py @@ -22,7 +22,7 @@ # The micro release number. The micro release number is incremented # for bug fix releases and small feature additions. -MICRO = 14 +MICRO = 15 # The version info for the current release. version_info = namedtuple('version_info', 'major minor micro') diff --git a/releasenotes.rst b/releasenotes.rst index 19306f04d..d4b10ee74 100644 --- a/releasenotes.rst +++ b/releasenotes.rst @@ -1,5 +1,11 @@ Enaml Release Notes =================== +0.7.15 - 06/12/2013 +------------------- +- Fix a bug in parsing elif blocks. e25363b005_ + +.. _e25363b005: https://github.com/nucleic/enaml/commit/e25363b00581ece64aad02fee369119e8393b5ce + 0.7.14 - 06/05/2013 ------------------- - Make the translucent background of PopupView configurable. 0731314117_ diff --git a/setup.py b/setup.py index 25515a23b..1f763c381 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ setup( name='enaml', - version='0.7.14', + version='0.7.15', author='The Nucleic Development Team', author_email='sccolbert@gmail.com', url='https://github.com/nucleic/enaml',