summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-07-26 15:14:44 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2017-07-26 16:14:44 -0400
commite758aa6066f79a4181ba8183112e1f4477bcce1b (patch)
treeba47cef274d4db66d463e193ce5053a4226d0585
parent9a20f65560fcc0d2d13c49dacde970948eae5275 (diff)
downloadcryptography-2.0.1.tar.gz
2.0.1 changelog and version bump (#3820)2.0.1
-rw-r--r--CHANGELOG.rst10
-rw-r--r--src/cryptography/__about__.py2
-rw-r--r--vectors/cryptography_vectors/__about__.py2
3 files changed, 12 insertions, 2 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 563c32e9e..1867c0d94 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,16 @@
Changelog
=========
+2.0.1 - 2017-07-26
+~~~~~~~~~~~~~~~~~~
+
+* Fixed a compilation bug affecting OpenBSD.
+* Altered the ``manylinux1`` wheels to statically link OpenSSL instead of
+ dynamically linking and bundling the shared object. This should resolve
+ crashes seen when using ``uwsgi`` or other binaries that link against
+ OpenSSL independently.
+* Fixed the stack level for the ``signer`` and ``verifier`` warnings.
+
2.0 - 2017-07-17
~~~~~~~~~~~~~~~~
diff --git a/src/cryptography/__about__.py b/src/cryptography/__about__.py
index 4b4b6dd04..c363a0a81 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__ = "2.0"
+__version__ = "2.0.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 9ee01dd02..de518819a 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__ = "2.0"
+__version__ = "2.0.1"
__author__ = "The cryptography developers"
__email__ = "cryptography-dev@python.org"