Skip to content

Commit

Permalink
version 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Mar 19, 2018
1 parent 3e170b4 commit 2f24f4e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion README.md
@@ -1,5 +1,5 @@
```
tlslite-ng version 0.7.2 2018-03-12
tlslite-ng version 0.7.3 2018-03-19
Hubert Kario <hkario at redhat.com>
https://github.com/tomato42/tlslite-ng/
```
Expand Down Expand Up @@ -586,6 +586,9 @@ encrypt-then-MAC mode for CBC ciphers.
12 History
===========

0.7.3 - 2018-03-19
* M2Crypto - fix test suite compatibility with 0.27.0 for real this time

0.7.2 - 2018-03-12
* Jython2.7 bytearray compatibility fix (Filip Goldefus)
* Python 2 compatibility with X.509 DER parsing (Erkki Vahala)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -61,7 +61,7 @@
# The short X.Y version.
version = u'0.7'
# The full version, including alpha/beta/rc tags.
release = u'0.7.2'
release = u'0.7.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -11,7 +11,7 @@
README = f.read()

setup(name="tlslite-ng",
version="0.7.2",
version="0.7.3",
author="Hubert Kario",
author_email="hkario@redhat.com",
url="https://github.com/tomato42/tlslite-ng",
Expand Down
2 changes: 1 addition & 1 deletion tlslite/__init__.py
Expand Up @@ -21,7 +21,7 @@
Then use the L{tlslite.TLSConnection.TLSConnection} class with a socket.
(Or, use one of the integration classes in L{tlslite.integration}).
@version: 0.7.2
@version: 0.7.3
"""

from tlslite.api import *
Expand Down
2 changes: 1 addition & 1 deletion tlslite/api.py
@@ -1,7 +1,7 @@
# Author: Trevor Perrin
# See the LICENSE file for legal information regarding use of this file.

__version__ = "0.7.2"
__version__ = "0.7.3"
from .constants import AlertLevel, AlertDescription, Fault
from .errors import *
from .checker import Checker
Expand Down

0 comments on commit 2f24f4e

Please sign in to comment.