From 87477242b96cb151c4f398db5548cf033ffe8b73 Mon Sep 17 00:00:00 2001 From: Bethany Nicholson Date: Wed, 17 Jun 2020 08:58:31 -0600 Subject: [PATCH 1/3] Updating the CHANGELOG in preparation for the release --- CHANGELOG.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index a26683f2..142279d8 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -6,6 +6,13 @@ Current Development ------------------------------------------------------------------------------- +- Updates to pyutilib.misc.config including documentation (#88) +- Updates to the README (#91, #92) +- Remove references to Python 2.6 (and older) (#94) +- Add Hierarchical timer class (#96) +- Add an ImmutableConfigValue class (#95) +- Add unittest.mock backport (#98) +- Automate wheel creation (#99) ------------------------------------------------------------------------------- Version 5.8.0 18 Mar 2020 From b2a52cf67194b50f5a19399fa140ab8c29131d25 Mon Sep 17 00:00:00 2001 From: Bethany Nicholson Date: Thu, 18 Jun 2020 23:43:56 -0600 Subject: [PATCH 2/3] Updating the CHANGELOG for the 6.0 release --- CHANGELOG.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 142279d8..4f54b45c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -3,16 +3,19 @@ ==================== ------------------------------------------------------------------------------- - Current Development + Version 6.0 19 Jun 2020 ------------------------------------------------------------------------------- - Updates to pyutilib.misc.config including documentation (#88) - Updates to the README (#91, #92) - Remove references to Python 2.6 (and older) (#94) -- Add Hierarchical timer class (#96) +- Add hierarchical timer class (#96) - Add an ImmutableConfigValue class (#95) - Add unittest.mock backport (#98) - Automate wheel creation (#99) +- Improve formatting in the log formatter (#102) +- Remove pyutilib.enum package (#101) +- Add support for expanding user and environment variables in import_file (#103) ------------------------------------------------------------------------------- Version 5.8.0 18 Mar 2020 From 9404244b0163e8dd899c8e7b14bec177ace3229a Mon Sep 17 00:00:00 2001 From: John Siirola Date: Fri, 19 Jun 2020 08:20:09 -0600 Subject: [PATCH 3/3] Updating CHANGELOG, RELEASE notice, and version --- CHANGELOG.txt | 29 ++++++++++++++++------------- RELEASE.txt | 9 +++++---- setup.py | 2 +- 3 files changed, 22 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 4f54b45c..49c2d76f 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -3,19 +3,22 @@ ==================== ------------------------------------------------------------------------------- - Version 6.0 19 Jun 2020 -------------------------------------------------------------------------------- - -- Updates to pyutilib.misc.config including documentation (#88) -- Updates to the README (#91, #92) -- Remove references to Python 2.6 (and older) (#94) -- Add hierarchical timer class (#96) -- Add an ImmutableConfigValue class (#95) -- Add unittest.mock backport (#98) -- Automate wheel creation (#99) -- Improve formatting in the log formatter (#102) -- Remove pyutilib.enum package (#101) -- Add support for expanding user and environment variables in import_file (#103) + Version 6.0.0 19 Jun 2020 +------------------------------------------------------------------------------- + +* Major API changes + - Remove pyutilib.enum package (#101) + +* Other changes + - Updates to pyutilib.misc.config including documentation (#88) + - Updates to the README (#91, #92) + - Remove references to Python 2.6 (and older) (#94) + - Add hierarchical timer class (#96) + - Add an ImmutableConfigValue class (#95) + - Add unittest.mock backport (#98) + - Automate wheel creation (#99) + - Improve formatting in the log formatter (#102) + - Add support for expanding user and environment variables in import_file (#103) ------------------------------------------------------------------------------- Version 5.8.0 18 Mar 2020 diff --git a/RELEASE.txt b/RELEASE.txt index b06bd0eb..120223b2 100644 --- a/RELEASE.txt +++ b/RELEASE.txt @@ -1,12 +1,13 @@ -We are pleased to announce the release of PyUtilib 5.8.0. The +We are pleased to announce the release of PyUtilib 6.0.0. The PyUtilib project supports the development of an ensemble of Python packages that include a wide variety of utilities, including a well-developed component architecture. -The following are highlights of the 5.8 release series: +The following are highlights of the 6.0 release series: -- Removed use of pyutilib and pyutilib.component namespace packages -- Reworked optional dependency imports to speed up importing +- Removed the pyutilib.enum package +- Expanded timer support +- Automated release management Additional changes are listed in CHANGELOG.txt diff --git a/setup.py b/setup.py index 13a10ea3..403c979e 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def read(*rnames): requires=[ 'nose', 'six' ] setup(name="PyUtilib", - version='5.8.1.dev0', + version='6.0.0', maintainer='William E. Hart', maintainer_email='wehart@sandia.gov', url = 'https://github.com/PyUtilib/pyutilib',