aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-07-15 16:41:50 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-07-15 16:41:50 -0400
commitfe0cad564d7e036d3b7b6d4ac59dc30d9abdb338 (patch)
tree896f8b7fdb6215268d719c13d5ef4301f1c51b02
parente97b2fa79458ac6f14c71e9f923a41727e4375ae (diff)
downloadexternal_python_setuptools-fe0cad564d7e036d3b7b6d4ac59dc30d9abdb338.tar.gz
external_python_setuptools-fe0cad564d7e036d3b7b6d4ac59dc30d9abdb338.tar.bz2
external_python_setuptools-fe0cad564d7e036d3b7b6d4ac59dc30d9abdb338.zip
Update changelog0.9.5
-rw-r--r--CHANGES.txt6
-rw-r--r--release.py2
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
-----
diff --git a/release.py b/release.py
index 5e99e74c..659b4086 100644
--- a/release.py
+++ b/release.py
@@ -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):