summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-10-15 19:30:57 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-10-15 19:30:57 -0700
commit3406be8667d35ed55ef8dc64822e9009d0386696 (patch)
tree333e1bb67e27ed4da2741ecd8f76cb15c6e4132e
parent8e37c0c22b37c907c0513c1846cf99f366c629b8 (diff)
parentbf54ae051b866521dfdf3eb1a731d296c698fb22 (diff)
downloadcryptography-3406be8667d35ed55ef8dc64822e9009d0386696.tar.gz
Merge pull request #1409 from reaperhulk/0.6.1-changelog0.6.10.6.x
0.6.1 changelog
-rw-r--r--CHANGELOG.rst11
-rw-r--r--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 f7e348329..f41fe2155 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,17 @@
Changelog
=========
+0.6.1 - 2014-10-15
+~~~~~~~~~~~~~~~~~~
+
+* Updated Windows wheels to be compiled against OpenSSL 1.0.1j.
+* Fixed an issue where OpenSSL 1.0.1j changed the errors returned by some
+ functions.
+* Added our license file to the ``cryptography-vectors`` package.
+* Implemented DSA hash truncation support (per FIPS 186-3) in the OpenSSL
+ backend. This works around an issue in 1.0.0, 1.0.0a, and 1.0.0b where
+ truncation was not implemented.
+
0.6 - 2014-09-29
~~~~~~~~~~~~~~~~
diff --git a/cryptography/__about__.py b/cryptography/__about__.py
index 65c28fb05..489f28b78 100644
--- a/cryptography/__about__.py
+++ b/cryptography/__about__.py
@@ -22,7 +22,7 @@ __summary__ = ("cryptography is a package which provides cryptographic recipes"
" and primitives to Python developers.")
__uri__ = "https://github.com/pyca/cryptography"
-__version__ = "0.6"
+__version__ = "0.6.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 af8ec170c..077c0ab9f 100644
--- a/vectors/cryptography_vectors/__about__.py
+++ b/vectors/cryptography_vectors/__about__.py
@@ -22,7 +22,7 @@ __summary__ = "Test vectors for the cryptography package."
__uri__ = "https://github.com/pyca/cryptography"
-__version__ = "0.6"
+__version__ = "0.6.1"
__author__ = "The cryptography developers"
__email__ = "cryptography-dev@python.org"