From d3fc050f6052826b5377d1bb6cf47d8980c59cf1 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 23 Oct 2019 19:01:18 -0700 Subject: [PATCH] Drop the alpha tag, update change log --- CHANGES.rst | 14 ++++++++++---- buildtools/version.py | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 44d0115a..41bda903 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,15 +8,21 @@ wxPython Changelog ================== -4.0.7 "" ------------------- -* [not yet released] +4.0.7 "one more, for the road" +------------------------------ +* 25-Oct-2019 PyPI: https://pypi.org/project/wxPython/4.0.7 Extras: https://extras.wxPython.org/wxPython4/extras/ Pip: ``pip install wxPython==4.0.7`` -This release provides the following fixes: +This release is comprised mostly of fixes and minor features which have been +back-ported from the master branch. This release is likely the last release of +the 4.0.x release series, and is certainly the last 4.0.x release that will +support Python 2.7. It may still continue to build for Python 2.7 for some time, +but no extra effort will be expended to keep it compatible. + +This release provides the following changes: * Bug fixes in wx.lib.calendar: key navigation across month boundaries is now possible; key navigation now sets the date and fires the EVT_CALENDAR event; diff --git a/buildtools/version.py b/buildtools/version.py index dfcfef3f..07944d37 100644 --- a/buildtools/version.py +++ b/buildtools/version.py @@ -26,7 +26,7 @@ VER_MAJOR = 4 VER_MINOR = 0 VER_RELEASE = 7 -VER_FLAGS = "a1" # wxPython release flags +VER_FLAGS = "" # wxPython release flags # The VER_FLAGS value is appended to the version number constructed from the # first 3 components and should be set according to the following patterns.