Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2011-09-02 Hynek Schlawack <hs@ox.cx>

* Release 0.15.1

2015-04-14 Glyph Lefkowitz <glyph@twistedmatrix.com>

* OpenSSL/SSL.py, OpenSSL/test/test_ssl.py: Fix a regression
Expand All @@ -6,6 +10,10 @@
Connection.shutdown() is called when the underlying transport has
gone away.

2011-09-02 Hynek Schlawack <hs@ox.cx>

* Release 0.15

2015-04-12 Jean-Paul Calderone <exarkun@twistedmatrix.com>

* OpenSSL/rand.py, OpenSSL/SSL.py: APIs which previously accepted
Expand Down Expand Up @@ -100,6 +108,10 @@

* OpenSSL/crypto.py: Add ``get_extensions`` method to ``X509Req``.

2014-02-23 Jean-Paul Calderone <exarkun@twistedmatrix.com>

* Release 0.14

2014-01-09 Jean-Paul Calderone <exarkun@twistedmatrix.com>

* OpenSSL: Port to the cffi-based OpenSSL bindings provided by
Expand Down
2 changes: 1 addition & 1 deletion OpenSSL/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
pyOpenSSL - A simple wrapper around the OpenSSL library
"""

__version__ = '0.15'
__version__ = '0.15.1'
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
# built documents.
#
# The short X.Y version.
version = '0.15'
version = '0.15.1'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


# XXX Deduplicate this
__version__ = '0.15'
__version__ = '0.15.1'

setup(name='pyOpenSSL', version=__version__,
packages = ['OpenSSL'],
Expand Down