diff --git a/CHANGES.txt b/CHANGES.txt index 338ae1df1..28d0dd1c2 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,28 @@ Traits UI Changelog =================== +Release 7.4.2 +------------- + +This is a small bug fix release which resolves a couple of bugs in the +RangeEditor and TreeEditor. It also pins the PySide6 version to < 6.4.0 due +to incompatibilities with the new enum system, which should improve the install +experience. + +Thanks To +--------- + +* Aaron Ayres +* hopeful0 +* Corran Webster + +Fixes +----- + +* Fix RangeTextEditor handling of None for low/high (#1950) +* Pin PySide6 to < 6.4 (#1951) +* Fix issues with shared "New" context menu in TreeEditor (#1953) + Release 7.4.1 ------------- diff --git a/docs/releases/upcoming/1950.bugfix.rst b/docs/releases/upcoming/1950.bugfix.rst deleted file mode 100644 index d704ecc24..000000000 --- a/docs/releases/upcoming/1950.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix RangeTextEditor handling of None for low/high (#1950) \ No newline at end of file diff --git a/docs/releases/upcoming/1951.bugfix.rst b/docs/releases/upcoming/1951.bugfix.rst deleted file mode 100644 index 7612c53ee..000000000 --- a/docs/releases/upcoming/1951.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Pin PySide6 to < 6.4 (#1951) \ No newline at end of file diff --git a/docs/releases/upcoming/1953.bugfix.rst b/docs/releases/upcoming/1953.bugfix.rst deleted file mode 100644 index 6d88deec4..000000000 --- a/docs/releases/upcoming/1953.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix issues with shared "New" context menu in TreeEditor (#1953) \ No newline at end of file diff --git a/setup.py b/setup.py index ae1369e45..be13ae758 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ # into the package source. MAJOR = 7 MINOR = 4 -MICRO = 1 +MICRO = 2 PRERELEASE = "" IS_RELEASED = True