diff options
author | Ned Deily <nad@python.org> | 2020-06-27 05:14:00 -0400 |
---|---|---|
committer | Ned Deily <nad@python.org> | 2020-06-27 05:14:00 -0400 |
commit | d56cd4006a1c5e07b0bf69fad9fc8e2fbf6aa855 (patch) | |
tree | 252f12dabb18e9c668f7e4959df5c15d75ef5863 | |
parent | Post release update (diff) | |
download | cpython-d56cd4006a1c5e07b0bf69fad9fc8e2fbf6aa855.tar.gz cpython-d56cd4006a1c5e07b0bf69fad9fc8e2fbf6aa855.tar.bz2 cpython-d56cd4006a1c5e07b0bf69fad9fc8e2fbf6aa855.zip |
3.6.11v3.6.11
-rw-r--r-- | Include/patchlevel.h | 6 | ||||
-rw-r--r-- | Mac/Resources/app/Info.plist.in | 4 | ||||
-rw-r--r-- | Misc/NEWS.d/3.6.11.rst | 8 | ||||
-rw-r--r-- | README.rst | 4 |
4 files changed, 15 insertions, 7 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 9710c54b65c..9f686b346fb 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -19,11 +19,11 @@ #define PY_MAJOR_VERSION 3 #define PY_MINOR_VERSION 6 #define PY_MICRO_VERSION 11 -#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA -#define PY_RELEASE_SERIAL 1 +#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL +#define PY_RELEASE_SERIAL 0 /* Version as a string */ -#define PY_VERSION "3.6.11rc1+" +#define PY_VERSION "3.6.11" /*--end constants--*/ /* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. diff --git a/Mac/Resources/app/Info.plist.in b/Mac/Resources/app/Info.plist.in index 66b5e764c54..1d624984a85 100644 --- a/Mac/Resources/app/Info.plist.in +++ b/Mac/Resources/app/Info.plist.in @@ -20,7 +20,7 @@ <key>CFBundleExecutable</key> <string>Python</string> <key>CFBundleGetInfoString</key> - <string>%version%, (c) 2001-2016 Python Software Foundation.</string> + <string>%version%, (c) 2001-2020 Python Software Foundation.</string> <key>CFBundleHelpBookFolder</key> <array> <string>Documentation</string> @@ -55,7 +55,7 @@ <key>NSAppleScriptEnabled</key> <true/> <key>NSHumanReadableCopyright</key> - <string>(c) 2001-2016 Python Software Foundation.</string> + <string>(c) 2001-2020 Python Software Foundation.</string> <key>NSHighResolutionCapable</key> <true/> </dict> diff --git a/Misc/NEWS.d/3.6.11.rst b/Misc/NEWS.d/3.6.11.rst new file mode 100644 index 00000000000..f5c5cffeede --- /dev/null +++ b/Misc/NEWS.d/3.6.11.rst @@ -0,0 +1,8 @@ +.. bpo: 0 +.. date: 2020-06-27 +.. no changes: True +.. nonce: NCau2w +.. release date: 2020-06-27 +.. section: Library + +There were no new changes in version 3.6.11. diff --git a/README.rst b/README.rst index 44e537c31ab..d6c795f31ff 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ -This is Python version 3.6.10 candidate 1+ -========================================== +This is Python version 3.6.11 +============================= .. image:: https://travis-ci.org/python/cpython.svg?branch=3.6 :alt: CPython build status on Travis CI |