Skip to content

Commit d69c210

Browse files
committed
mark as 0.7.0-alpha2
1 parent 31fe6a5 commit d69c210

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
```
2-
tlslite-ng version 0.7.0-alpha1 2016-10-11
2+
tlslite-ng version 0.7.0-alpha2 2016-11-18
33
Hubert Kario <hkario at redhat.com>
44
https://github.com/tomato42/tlslite-ng/
55
```
@@ -588,6 +588,9 @@ encrypt-then-MAC mode for CBC ciphers.
588588
589589
* basic support for RSA-PSS (Tomas Foukal)
590590
* better documentation for Parser and ASN1Parser
591+
* stricter checks on network messages
592+
* faster Codec
593+
* faster AES implementation initialization
591594
592595
0.6.0 - 2016-09-07
593596

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
setup(name="tlslite-ng",
11-
version="0.7.0-alpha1",
11+
version="0.7.0-alpha2",
1212
author="Hubert Kario",
1313
author_email="[email protected]",
1414
url="https://github.com/tomato42/tlslite-ng",

tlslite/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Then use the L{tlslite.TLSConnection.TLSConnection} class with a socket.
2222
(Or, use one of the integration classes in L{tlslite.integration}).
2323
24-
@version: 0.7.0-alpha1
24+
@version: 0.7.0-alpha2
2525
"""
2626

2727
from tlslite.api import *

tlslite/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Author: Trevor Perrin
22
# See the LICENSE file for legal information regarding use of this file.
33

4-
__version__ = "0.7.0-alpha1"
4+
__version__ = "0.7.0-alpha2"
55
from .constants import AlertLevel, AlertDescription, Fault
66
from .errors import *
77
from .checker import Checker

0 commit comments

Comments
 (0)