Skip to content

Commit

Permalink
release 0.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthieuDartiailh committed Sep 18, 2019
1 parent 17dd8b6 commit e396a8b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
6 changes: 3 additions & 3 deletions enaml/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
# possibly small differences in the API, but these changes will come
# backwards compatibility support when possible. Minor releases are
# typically used for large feature additions.
MINOR = 11
MINOR = 10

# The micro release number. The micro release number is incremented
# for bug fix releases and small feature additions.
MICRO = 0
MICRO = 4

# The status indicate if this is a development or pre-release version
STATUS = 'dev'
STATUS = ''

#: A namedtuple of the version info for the current release.
version_info = namedtuple('version_info', 'major minor micro status')
Expand Down
9 changes: 7 additions & 2 deletions releasenotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Enaml Release Notes
0.11.0 - unreleased
-------------------

0.10.4 - unreleased
0.10.4 - 18/09/2019
-------------------
- fix a bug in the parser preventing the use of `raise from` under Python 3 PR #364
- add a ButtonGroup widget and a group attribute on all buttons to allow to
Expand All @@ -18,7 +18,12 @@ Enaml Release Notes
the error state of the validator is cleared. PR #365
- fix Looper's ``loop_index`` becoming invalid when items are reordered #357 via PR #358

.. note:: Looper's ``loop_index`` and ``loop_item`` scope variables are now deprecated. When upgrading to 0.10.4 or newer all usage of ``loop_index`` and ``loop_item`` within a Looper should be replaced with ``loop.index`` and ``loop.item`` respectively. See #357 for details.
.. note::

Looper's ``loop_index`` and ``loop_item`` scope variables are now deprecated.
When upgrading to 0.10.4 or newer all usage of ``loop_index`` and ``loop_item``
within a Looper should be replaced with ``loop.index`` and ``loop.item``
respectively. See #357 for details.


0.10.3 - 28/01/2019
Expand Down

0 comments on commit e396a8b

Please sign in to comment.