From 655a3eed16c709020a4eb22a196f9fe91058ab8b Mon Sep 17 00:00:00 2001 From: Corran Webster Date: Tue, 1 Nov 2016 15:15:37 +0000 Subject: [PATCH 1/5] Update changelog for release. --- CHANGES.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 6878bd7fe..cfa24e24d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,21 @@ Traits CHANGELOG ================ +Release 4.6.0 +------------- + +This is an incremental release over 4.5, accumulating over a year's worth of +bugfixes and small improvements to the code. + +Highlights of this release include: + +* new Bytes and ValidatedTuple traits. +* a new ArrayOrNone trait which correctly handles None comparisons with Numpy + arrays. +* clean-up of the ETSConfig code for TraitsUI toolkit selection. +* better compatibility with NumPy scalar types. +* many other bugfixes and improvements. + Change summary since 4.5.0 ~~~~~~~~~~~~~~~~~~~~~~~~~~ From 2d23da9458f36874a7fb358b7da7ef9f7d2d166b Mon Sep 17 00:00:00 2001 From: Corran Webster Date: Tue, 1 Nov 2016 15:16:32 +0000 Subject: [PATCH 2/5] Minor changes to release statement. --- CHANGES.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.txt b/CHANGES.txt index cfa24e24d..c5f8680e7 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -9,6 +9,7 @@ bugfixes and small improvements to the code. Highlights of this release include: +* support for Python 3.4 and 3.5. * new Bytes and ValidatedTuple traits. * a new ArrayOrNone trait which correctly handles None comparisons with Numpy arrays. From 662ed4f853d7691d2b3e3134df67dcad97515d70 Mon Sep 17 00:00:00 2001 From: Corran Webster Date: Tue, 1 Nov 2016 15:19:04 +0000 Subject: [PATCH 3/5] Release 4.6.0! --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cac606e1c..eb39d73f5 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ MINOR = 6 MICRO = 0 -IS_RELEASED = False +IS_RELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) From d1d0776cf198ee8a1fa462875ab3d5e4d92f9d22 Mon Sep 17 00:00:00 2001 From: Corran Webster Date: Wed, 2 Nov 2016 10:24:51 +0000 Subject: [PATCH 4/5] Fix bad classifier. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index eb39d73f5..23b42f681 100644 --- a/setup.py +++ b/setup.py @@ -125,7 +125,7 @@ def additional_commands(): author='David C. Morrill, et. al.', author_email='info@enthought.com', classifiers=[c.strip() for c in """\ - Development Status :: 5 - Production/really Stable + Development Status :: 5 - Production/Stable Intended Audience :: Developers Intended Audience :: Science/Research License :: OSI Approved :: BSD License From ef2de174f924a83cd39b054ae24abe8412007839 Mon Sep 17 00:00:00 2001 From: Corran Webster Date: Wed, 2 Nov 2016 10:31:34 +0000 Subject: [PATCH 5/5] Version number bump for 4.7 development. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 23b42f681..20681d5cb 100644 --- a/setup.py +++ b/setup.py @@ -8,10 +8,10 @@ from setuptools import setup, Extension, find_packages MAJOR = 4 -MINOR = 6 +MINOR = 7 MICRO = 0 -IS_RELEASED = True +IS_RELEASED = False VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)