Bump version number, add alpha tag

This commit is contained in:
Robin Dunn
2017-02-14 19:37:03 -08:00
parent 7ebe2c70e4
commit 35bfbb4b01
3 changed files with 3 additions and 6 deletions

View File

@@ -13,10 +13,10 @@
VER_MAJOR = 3 # Matches wxWidgets MAJOR version number
VER_MINOR = 0 # Matches wxWidgets MINOR version number
VER_RELEASE = 3 # wxPython RELEASE number for the given wxWidgets
VER_RELEASE = 4 # wxPython RELEASE number for the given wxWidgets
# MAJOR.MINOR version.
VER_FLAGS = "" # wxPython release flags
VER_FLAGS = "a1" # 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.

View File

@@ -1,3 +1,3 @@
# This file was generated by Phoenix's wscript.
VERSION_STRING = '3.0.3'
VERSION_STRING = '3.0.4a1'

View File

@@ -8,9 +8,6 @@ if 'wxEVT_NULL' in dir():
__version__ = VERSION_STRING
assert MAJOR_VERSION == wx._core.MAJOR_VERSION, "wxPython/wxWidgets version mismatch"
assert MINOR_VERSION == wx._core.MINOR_VERSION, "wxPython/wxWidgets version mismatch"
if RELEASE_NUMBER != wx._core.RELEASE_NUMBER:
import warnings
warnings.warn("wxPython/wxWidgets release number mismatch")
# Register a function to be called when Python terminates that will clean
# up and release all system resources that wxWidgets allocated.