Skip to content

Commit

Permalink
release 0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthieuDartiailh committed Jan 29, 2019
1 parent 352c3dc commit 61a0f2f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 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-2018, Nucleic Development Team.
# Copyright (c) 2013-2019, Nucleic Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
Expand All @@ -25,7 +25,7 @@
MICRO = 3

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

0.10.3 - unreleased
0.10.3 - 28/01/2019
-------------------
- implement import hooks using Python 3 interface #331
- make enaml-run exit immediately when pressing ^c #328
- add enaml-compileall for generating .pyc and .enamlc files #262
- add support for f-strings in enaml files on supported Python versions PR #288
- add support for declarative async function PR #285
- add a enaml-compileallcommand to generate pyc and enamlc files PR #262
- fix the tp_name value of all C extensions #318
- add pickle support for enaml's Color - #316
- add support for tiling and cascading to MdiArea PR # 259
Expand All @@ -16,6 +18,10 @@ Enaml Release Notes
- add constraints to enforce image aspect ratio in ImageView PR #254
- improvements to the scintilla widget and live editor PR #243

Multiple improvements to the documentation, special thanks to Julian-O for
this.


0.10.2 - 28/01/2018
-------------------
- fix import of QScintilla under PyQt5 PR #230
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-2018, Nucleic Development Team.
# Copyright (c) 2013-2019, Nucleic Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
Expand Down Expand Up @@ -163,7 +163,7 @@ def run(self):
],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
requires=['atom', 'PyQt', 'ply', 'kiwisolver', 'qtpy'],
install_requires=['setuptools', 'atom>=0.4.2.dev', 'qtpy>=1.3',
install_requires=['setuptools', 'atom>=0.4.2', 'qtpy>=1.3',
'kiwisolver>=1.0.0', 'ply>=3.4'],
packages=find_packages(),
package_data={
Expand Down

0 comments on commit 61a0f2f

Please sign in to comment.