diff options
-rw-r--r-- | CHANGES.txt | 6 | ||||
-rw-r--r-- | release.py | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index fa8bd093..2c1af0c5 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,12 @@ CHANGES ======= ----- +0.9.5 +----- + +* Python #17980: Fix security vulnerability in SSL certificate validation. + +----- 0.9.4 ----- @@ -29,6 +29,7 @@ link_patterns = [ r"Buildout #(?P<buildout>\d+)", r"Old Setuptools #(?P<old_setuptools>\d+)", r"Jython #(?P<jython>\d+)", + r"Python #(?P<python>\d+)", ] issue_urls = dict( @@ -37,6 +38,7 @@ issue_urls = dict( buildout='https://github.com/buildout/buildout/issues/{buildout}', old_setuptools='http://bugs.python.org/setuptools/issue{old_setuptools}', jython='http://bugs.jython.org/issue{jython}', + python='http://bugs.python.org/issue{python}', ) def _linkify(source, dest): |