Skip to content

Commit

Permalink
Merge pull request #505 from nucleic/release-0.15.2
Browse files Browse the repository at this point in the history
Prepare release 0.15.2
  • Loading branch information
MatthieuDartiailh authored Aug 19, 2022
2 parents 58e8261 + 0f71fdd commit c8c6490
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
14 changes: 11 additions & 3 deletions enaml/core/compiler_helpers.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#------------------------------------------------------------------------------
# Copyright (c) 2013-2022, Nucleic Development Team.
# Copyright (c) 2013, Nucleic Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
#------------------------------------------------------------------------------
from functools import update_wrapper

from atom.api import Event, Instance, Member, add_member
from atom.api import Event, Instance, Member
from atom.datastructures.api import sortedmap

from .alias import Alias
Expand Down Expand Up @@ -154,8 +154,16 @@ def add_storage(node, name, store_type, kind):
else:
raise RuntimeError("invalid kind '%s'" % kind)

if member is not None:
new.set_index(member.index)
new.copy_static_observers(member)
else:
new.set_index(len(members))

new.set_name(name)
patch_d_member(new)
add_member(klass, name, new)
members[name] = new
setattr(klass, name, new)


def declarative_node(klass, identifier, scope_key, store_locals):
Expand Down
5 changes: 3 additions & 2 deletions releasenotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ Enaml Release Notes

Dates are written as DD/MM/YYYY

0.15.2 - unreleased
0.15.2 - 19/08/2022
-------------------
- fix position of popup view when multiple displays are used PR #500
- reimplement DockArea.initialize instead of shadowing the initialized member.
PR #502
- require qtpy>=2.1 far Qt backends version PR #501
- qt: use QEvent.Type to coerce new registered event type with all bindings. PR #497
This requires PyQt 6.3.1 to work and allow to eliminate a deprecation warning.

- fix loading of dock area guide images. PR #503

0.15.1 - 13/06/2022
-------------------
Expand Down

0 comments on commit c8c6490

Please sign in to comment.