diff options
-rw-r--r-- | Misc/NEWS | 3 | ||||
-rw-r--r-- | PCbuild/get_externals.bat | 2 | ||||
-rw-r--r-- | PCbuild/pyproject.props | 2 | ||||
-rw-r--r-- | Tools/buildbot/build.bat | 2 |
4 files changed, 4 insertions, 5 deletions
@@ -1325,8 +1325,7 @@ Windows - Issue #21907: Improved the batch scripts provided for building Python. -- Issue #21671, #22160, CVE-2014-0224: The bundled version of OpenSSL has been - updated to 1.0.1i. +- Issue #22644: The bundled version of OpenSSL has been updated to 1.0.1j. - Issue #10747: Use versioned labels in the Windows start menu. Patch by Olive Kilburn. diff --git a/PCbuild/get_externals.bat b/PCbuild/get_externals.bat index 783df5c..8436051 100644 --- a/PCbuild/get_externals.bat +++ b/PCbuild/get_externals.bat @@ -51,7 +51,7 @@ echo.Fetching external libraries... for %%e in ( bzip2-1.0.6 - openssl-1.0.1i + openssl-1.0.1j tcl-8.6.1.0 tk-8.6.1.0 tix-8.4.3.4 diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props index e566cdc..9f2b0e5 100644 --- a/PCbuild/pyproject.props +++ b/PCbuild/pyproject.props @@ -20,7 +20,7 @@ <sqlite3Dir>$(externalsDir)\sqlite-3.8.3.1</sqlite3Dir> <bz2Dir>$(externalsDir)\bzip2-1.0.6</bz2Dir> <lzmaDir>$(externalsDir)\xz-5.0.5</lzmaDir> - <opensslDir>$(externalsDir)\openssl-1.0.1i</opensslDir> + <opensslDir>$(externalsDir)\openssl-1.0.1j</opensslDir> <tclDir>$(externalsDir)\tcl-8.6.1.0</tclDir> <tkDir>$(externalsDir)\tk-8.6.1.0</tkDir> <tixDir>$(externalsDir)\tix-8.4.3.4</tixDir> diff --git a/Tools/buildbot/build.bat b/Tools/buildbot/build.bat index d37ec7b..f68b88f 100644 --- a/Tools/buildbot/build.bat +++ b/Tools/buildbot/build.bat @@ -7,7 +7,7 @@ call "%~dp0clean.bat" @rem a new version of an external library, especially Tcl/Tk): @rem 1) uncomment the following line: -@rem call "%~dp0..\..\PCbuild\get_externals.bat" --clean-only +call "%~dp0..\..\PCbuild\get_externals.bat" --clean-only @rem 2) commit and push @rem 3) wait for all Windows bots to start a build with that changeset |