Merge branch 'release-prep' into wxPy-4.0.x

This commit is contained in:
Robin Dunn
2019-05-22 11:00:06 -07:00
5 changed files with 29 additions and 36 deletions

View File

@@ -10,18 +10,24 @@ wxPython Changelog
4.0.6 "Applesauce"
------------------
* (not yet released)
* 21-May-2019
PyPI: https://pypi.org/project/wxPython/4.0.6
Extras: https://extras.wxPython.org/wxPython4/extras/
Pip: ``pip install wxPython==4.0.6``
Changes in this release include the following:
This release provides the following fixes:
* Fixed a probably rare, but fatal bug on OSX when calling certain overloaded
virtual methods with implementations in Python.
* Fixed char pointers in generated stub code to have a valid pointer value.
* Reverted the change that loads up install_requires from the contents of
requirements.txt. Split the requirements.txt file into one for install and one
for development.
4.0.5 "St. Helens Day"

View File

@@ -24,7 +24,7 @@ PROJECT_NAME = 'wxPython'
# version numbers.
VER_MAJOR = 4
VER_MINOR = 0
VER_RELEASE = 6
VER_RELEASE = 7
VER_FLAGS = "a1" # wxPython release flags

View File

@@ -1,3 +1,3 @@
# This file was generated by wxPython's wscript.
VERSION_STRING = '4.0.5a1'
VERSION_STRING = '4.0.6'

View File

@@ -9,46 +9,25 @@
Announcing wxPython 4.0.5
Announcing wxPython 4.0.6
=========================
PyPI: https://pypi.org/project/wxPython/4.0.5
PyPI: https://pypi.org/project/wxPython/4.0.6
Extras: https://extras.wxPython.org/wxPython4/extras/
Pip: ``pip install wxPython==4.0.5``
Pip: ``pip install wxPython==4.0.6``
Changes in this release include the following:
This is a quick-fix release to take care of the following issues:
* Fixed a probably rare, but fatal bug on OSX when calling certain
overloaded virtual methods with implementations in Python.
* Added missing HtmlWindow.ScrollToAnchor method, and also a couple methods
in HtmlCell too. (#1141)
* Fixed char pointers in generated stub code to have a valid
pointer value.
* Added missing setters for the wheel-related properties in wx.MouseEvent.
(#1140)
* Updated wxWidgets commit reference, bringing fixes for #1140, #1086 and
#1147.
* Fix the use of the output parameter in HtmlWindow.OnOpeningURL the same way
it was fixed in HtmlWindowInterface.OnHTMLOpeningURL. (#1068)
* Fixed a crashing bug when using a member of a transient wx.VisualAttributes
object. Also set the attributes to be read-only to simplify the fix. (#1198).
* Reverted the change that loads up install_requires from the
contents of requirements.txt. Split the requirements.txt file
into one for install and one for development.
* Updated the sip being used in wxPython builds to version 4.19.16.
* Added helper functions to check results of wxWidgets configure during the
build of wxPython. Currently used to determine if the wx webview, glcanvas,
and media libraries should be added to the link command. (#1138)
* Fixed scrollbar issue with ListCtrlAutoWidthMixin (#1215)
* Fixed file access in the wx.py and wx.tools.pywxrc packages to be Python 2 and
3 compatible. (#1193, #1156)
* Fixes for building with Python 3.8 on Linux. (#1227)
What is wxPython?

View File

@@ -62,6 +62,14 @@ HOWTO Release wxPython Phoenix
TODO: Automate this!
Go to the site and unpack the new docs into the document root.
cd domains/docs.wxpython.org/htdocs
mkdir {OLD_VERSION}
mv .buildinfo [_a-z]* {OLD_VERSION}
tar xzvf ../tmp/wxPython-docs-*
mv wxPython-docs-*/docs/html/* .
mv wxPython-docs-*/docs/html/.buildinfo .
rm -r wxPython-docs-*
15. Upload the docs, demos and pdb archive files to extras.wxpython.org/wxPython4/extras/::
VERSION={current release version number}