From 0cc615430d58f7bb0936840c5b10cb0530e3885a Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Tue, 19 Jan 2016 14:09:32 +0100 Subject: 2016 snook up on us --- src/OpenSSL/rand.py | 4 ++-- src/OpenSSL/version.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/OpenSSL') diff --git a/src/OpenSSL/rand.py b/src/OpenSSL/rand.py index c12638f..087b243 100644 --- a/src/OpenSSL/rand.py +++ b/src/OpenSSL/rand.py @@ -118,7 +118,7 @@ def egd(path, bytes=_unspecified): Does *not* actually query the EGD. - .. deprecated:: 15.2.0 + .. deprecated:: 16.0.0 EGD was only necessary for some commercial UNIX systems that all reached their ends of life more than a decade ago. See `pyca/cryptography#1636 @@ -129,7 +129,7 @@ def egd(path, bytes=_unspecified): :returns: ``len(bytes)`` or 255 if not specified. """ - warnings.warn("OpenSSL.rand.egd() is deprecated as of 15.2.0.", + warnings.warn("OpenSSL.rand.egd() is deprecated as of 16.0.0.", DeprecationWarning) if not isinstance(path, _builtin_bytes): diff --git a/src/OpenSSL/version.py b/src/OpenSSL/version.py index 02c5fc3..71c1fb4 100644 --- a/src/OpenSSL/version.py +++ b/src/OpenSSL/version.py @@ -11,7 +11,7 @@ __all__ = [ "__title__", "__uri__", "__version__", ] -__version__ = "15.2.0.dev0" +__version__ = "16.0.0.dev0" __title__ = "pyOpenSSL" __uri__ = "https://github.com/pyca/pyopenssl" @@ -19,4 +19,4 @@ __summary__ = "Python wrapper module around the OpenSSL library" __author__ = "The pyOpenSSL developers" __email__ = "cryptography-dev@python.org" __license__ = "Apache License, Version 2.0" -__copyright__ = "Copyright 2001-2015 {0}".format(__author__) +__copyright__ = "Copyright 2001-2016 {0}".format(__author__) -- cgit v1.2.1