summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-09-14 10:53:56 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2017-09-13 22:53:56 -0400
commit9bd33dc016debc662f044204d5e2d186a9673837 (patch)
tree85a80614d7acec93825f78636c2b912a7533a30c
parent58193f195b4673bb3c34e0464f878b63fd52d929 (diff)
downloadpyopenssl-9bd33dc016debc662f044204d5e2d186a9673837.tar.gz
bump version and update changelog (#693)17.3.0
* bump version and update changelog * add changelog entries for the memory leak fixes * backticks
-rw-r--r--CHANGELOG.rst7
-rw-r--r--src/OpenSSL/version.py2
2 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 213c397..fb8b84e 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -5,7 +5,7 @@ Versions are year-based with a strict backward-compatibility policy.
The third digit is only for regressions.
-17.3.0 (UNRELEASED)
+17.3.0 (2017-09-14)
-------------------
@@ -29,7 +29,10 @@ Deprecations:
Changes:
^^^^^^^^
-*none*
+- Fixed a memory leak in ``OpenSSL.crypto.CRL``.
+ `#690 <https://github.com/pyca/pyopenssl/pull/690>`_
+- Fixed a memory leak when verifying certificates with ``OpenSSL.crypto.X509StoreContext``.
+ `#691 <https://github.com/pyca/pyopenssl/pull/691>`_
----
diff --git a/src/OpenSSL/version.py b/src/OpenSSL/version.py
index 5ba33aa..274d24c 100644
--- a/src/OpenSSL/version.py
+++ b/src/OpenSSL/version.py
@@ -11,7 +11,7 @@ __all__ = [
"__title__", "__uri__", "__version__",
]
-__version__ = "17.3.0.dev0"
+__version__ = "17.3.0"
__title__ = "pyOpenSSL"
__uri__ = "https://pyopenssl.org/"