Skip to content

Commit 6f2d849

Browse files
committed
tag version 0.6.0
1 parent 0358247 commit 6f2d849

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

README

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ Functionality implemented include:
2727
- Extended Master Secret calculation for TLS connections (RFC 7627)
2828
- padding extension (RFC 7685)
2929
- Keying material exporter (RFC 5705)
30+
- Next Protocol Negotiation
31+
- Application-Layer Protocol Negotiation Extension (RFC 7301)
3032

3133

3234
tlslite-ng aims to be a drop-in replacement for tlslite while providing more

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
```
2-
tlslite-ng version 0.6.0-beta1 2016-08-08
2+
tlslite-ng version 0.6.0 2016-09-07
33
Hubert Kario <hkario at redhat.com>
44
https://github.com/tomato42/tlslite-ng/
55
```
@@ -584,8 +584,11 @@ encrypt-then-MAC mode for CBC ciphers.
584584
12 History
585585
===========
586586
587-
0.6.0 - WIP
587+
0.6.0 - 2016-09-07
588588
589+
* added support for ALPN from RFC 7301
590+
* fixed handling of SRP databases
591+
* fixed compatibility issues with Python 3
589592
* fixed compatibility with Python 2.7.3
590593
* AECDH support on server side (Milan Lysonek)
591594
* make the Client Hello parser more strict, it will now abort if the

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.6.0-beta1",
11+
version="0.6.0",
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.6.0-beta1
24+
@version: 0.6.0
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.6.0-beta1"
4+
__version__ = "0.6.0"
55
from .constants import AlertLevel, AlertDescription, Fault
66
from .errors import *
77
from .checker import Checker

0 commit comments

Comments
 (0)