Skip to content

Commit

Permalink
0.10.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthieuDartiailh committed Jan 28, 2018
1 parent 5707b03 commit e020264
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
4 changes: 2 additions & 2 deletions enaml/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#------------------------------------------------------------------------------
# Copyright (c) 2013-2017, Nucleic Development Team.
# Copyright (c) 2013-2018, Nucleic Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
Expand All @@ -25,7 +25,7 @@
MICRO = 2

# 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
11 changes: 10 additions & 1 deletion releasenotes.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
Enaml Release Notes
===================

0.10.2 - unreleased
0.10.2 - 28/01/2018
-------------------
- fix import of QScintilla under PyQt5 PR #230
- add support for importing enaml files from zip archives #232
- fix menu item ordering under Python 3 #233
- fix repr of declarative function objects #235
- properly reset layout_container member in qt backend after a widget has been
reparented #240
- fix calls to explicit_warn which could lead to global vars corruption #247
- add a text align member to Field to control text alignment #249
- fix the parsing rules for function definitions #252
- several improvements to the handling of comprehensions and lambdas #242 #245

0.10.1 - 13/11/2017
-------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#------------------------------------------------------------------------------
# Copyright (c) 2013-2017, Nucleic Development Team.
# Copyright (c) 2013-2018, Nucleic Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
Expand Down Expand Up @@ -149,7 +149,7 @@ def run(self):
description='Declarative DSL for building rich user interfaces in Python',
long_description=open('README.rst').read(),
requires=['future', 'atom', 'PyQt', 'ply', 'kiwisolver', 'qtpy'],
install_requires=['setuptools', 'future', 'atom>=0.4.0', 'qtpy>=1.3',
install_requires=['setuptools', 'future', 'atom>=0.4.1', 'qtpy>=1.3',
'kiwisolver>=1.0.0', 'ply>=3.4'],
packages=find_packages(),
package_data={
Expand Down

0 comments on commit e020264

Please sign in to comment.