summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-09-22 14:52:14 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2016-09-22 15:52:14 -0400
commit1ed0235eae895d09b4702d8cf592050fbe9364ef (patch)
treec6b45ca8e5a71045f9df1d4910fe02ed9af9719a
parenta596ff378c37afbaebfaeb5b8922a2ea2b8af9dd (diff)
downloadcryptography-1.5.1.tar.gz
1.5.1 changelog and version bump (#3161)1.5.1
* 1.5.1 changelog and version bump * update changelog
-rw-r--r--CHANGELOG.rst11
-rw-r--r--src/cryptography/__about__.py2
-rw-r--r--vectors/cryptography_vectors/__about__.py2
3 files changed, 13 insertions, 2 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 6aeba4fb6..1915ab393 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,17 @@
Changelog
=========
+1.5.1 - 2016-09-22
+~~~~~~~~~~~~~~~~~~
+
+* Updated Windows and OS X wheels to be compiled against OpenSSL 1.0.2i.
+* Resolved a ``UserWarning`` when used with cffi 1.8.3.
+* Fixed a memory leak in name creation with X.509.
+* Added a workaround for old versions of setuptools.
+* Fixed an issue preventing ``cryptography`` from compiling against
+ OpenSSL 1.0.2i.
+
+
1.5 - 2016-08-26
~~~~~~~~~~~~~~~~
diff --git a/src/cryptography/__about__.py b/src/cryptography/__about__.py
index 3c389867b..b33dbd15f 100644
--- a/src/cryptography/__about__.py
+++ b/src/cryptography/__about__.py
@@ -14,7 +14,7 @@ __summary__ = ("cryptography is a package which provides cryptographic recipes"
" and primitives to Python developers.")
__uri__ = "https://github.com/pyca/cryptography"
-__version__ = "1.5"
+__version__ = "1.5.1"
__author__ = "The cryptography developers"
__email__ = "cryptography-dev@python.org"
diff --git a/vectors/cryptography_vectors/__about__.py b/vectors/cryptography_vectors/__about__.py
index 495b851ae..33477478e 100644
--- a/vectors/cryptography_vectors/__about__.py
+++ b/vectors/cryptography_vectors/__about__.py
@@ -14,7 +14,7 @@ __summary__ = "Test vectors for the cryptography package."
__uri__ = "https://github.com/pyca/cryptography"
-__version__ = "1.5"
+__version__ = "1.5.1"
__author__ = "The cryptography developers"
__email__ = "cryptography-dev@python.org"