diff --git a/CHANGELOG.md b/CHANGELOG.md index 688f69b..16e5504 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release Notes -## Unreleased +## Version 16 + +### Package Versions + +- Python 2.7.15, 3.5.4, 3.6.7, 3.7.1 +- pywin32 224, pip 18.1, psutil 5.4.8, setuptools 40.6.2, six 1.11.0 ### Bug Fixes diff --git a/appveyor.yml b/appveyor.yml index 5406d1f..06600d1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,11 +1,11 @@ environment: matrix: - PYTHON: "C:\\Python37" - INSTALL_OPTIONS: 3.7 --min=0 + INSTALL_OPTIONS: 3.7 --min=1 OUTPUT: "py37.exe" ALTPYTHON: "C:\\Python36-x64" - PYTHON: "C:\\Python37-x64" - INSTALL_OPTIONS: 3.7 --min=0 --64 + INSTALL_OPTIONS: 3.7 --min=1 --64 OUTPUT: "py37-64.exe" ALTPYTHON: "C:\\Python36-x64" - PYTHON: "C:\\Python27" @@ -25,11 +25,11 @@ environment: OUTPUT: "py35-64.exe" ALTPYTHON: "C:\\Python36-x64" - PYTHON: "C:\\Python36" - INSTALL_OPTIONS: 3.6 --min=6 + INSTALL_OPTIONS: 3.6 --min=7 OUTPUT: "py36.exe" ALTPYTHON: "C:\\Python36-x64" - PYTHON: "C:\\Python36-x64" - INSTALL_OPTIONS: 3.6 --min=6 --64 + INSTALL_OPTIONS: 3.6 --min=7 --64 OUTPUT: "py36-64.exe" ALTPYTHON: "C:\\Python36" diff --git a/py_version.py b/py_version.py index c2f577e..e612134 100644 --- a/py_version.py +++ b/py_version.py @@ -2,5 +2,5 @@ import sys -Version = sys.version.split()[0] + '.15' +Version = sys.version.split()[0] + '.16' Description = 'Stand-Alone Python Interpreter'