Skip to content

Commit

Permalink
mark as 0.7.0-alpha2
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Nov 18, 2016
1 parent 31fe6a5 commit d69c210
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```
tlslite-ng version 0.7.0-alpha1 2016-10-11
tlslite-ng version 0.7.0-alpha2 2016-11-18
Hubert Kario <hkario at redhat.com>
https://github.com/tomato42/tlslite-ng/
```
Expand Down Expand Up @@ -588,6 +588,9 @@ encrypt-then-MAC mode for CBC ciphers.

* basic support for RSA-PSS (Tomas Foukal)
* better documentation for Parser and ASN1Parser
* stricter checks on network messages
* faster Codec
* faster AES implementation initialization

0.6.0 - 2016-09-07

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


setup(name="tlslite-ng",
version="0.7.0-alpha1",
version="0.7.0-alpha2",
author="Hubert Kario",
author_email="[email protected]",
url="https://github.com/tomato42/tlslite-ng",
Expand Down
2 changes: 1 addition & 1 deletion tlslite/__init__.py
Original file line number Diff line number Diff line change
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.0-alpha1
@version: 0.7.0-alpha2
"""

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

__version__ = "0.7.0-alpha1"
__version__ = "0.7.0-alpha2"
from .constants import AlertLevel, AlertDescription, Fault
from .errors import *
from .checker import Checker
Expand Down

0 comments on commit d69c210

Please sign in to comment.