summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.rst4
-rw-r--r--src/OpenSSL/version.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 035d561..dc3d7a7 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.1.0 (UNRELEASED)
+17.1.0 (2017-06-30)
-------------------
@@ -42,7 +42,7 @@ Changes:
`#645 <https://github.com/pyca/pyopenssl/pull/645>`_
- Added ``OpenSSL.debug`` that allows to get an overview of used library versions (including linked OpenSSL) and other useful runtime information using ``python -m OpenSSL.debug``.
`#620 <https://github.com/pyca/pyopenssl/pull/620>`_
-- Added a fallback path to `Context.set_default_verify_paths` to accommodate the upcoming release of ``cryptography`` ``manylinux1`` wheels.
+- Added a fallback path to ``Context.set_default_verify_paths()`` to accommodate the upcoming release of ``cryptography`` ``manylinux1`` wheels.
`#633 <https://github.com/pyca/pyopenssl/pull/633>`_
diff --git a/src/OpenSSL/version.py b/src/OpenSSL/version.py
index 9a30acd..634f85a 100644
--- a/src/OpenSSL/version.py
+++ b/src/OpenSSL/version.py
@@ -11,7 +11,7 @@ __all__ = [
"__title__", "__uri__", "__version__",
]
-__version__ = "17.1.0.dev0"
+__version__ = "17.1.0"
__title__ = "pyOpenSSL"
__uri__ = "https://pyopenssl.readthedocs.io/"