Skip to content

Commit

Permalink
mark 0.6.0-alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Nov 11, 2015
1 parent cacaf39 commit 021bef0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
.pydevproject
.settings
.coverage
.hypothesis
coverage.xml
pylint_report.txt
build/
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```
tlslite-ng version 0.5.1 2015-11-05
tlslite-ng version 0.6.0-alpha1 2015-11-11
Hubert Kario <hkario at redhat.com>
https://github.com/tomato42/tlslite-ng/
```
Expand Down Expand Up @@ -521,6 +521,11 @@ encrypt-then-MAC mode for CBC ciphers.
12 History
===========

0.6.0 - WIP
- add support for ChaCha20 and Poly1305
- add TLS_DHE_RSA_WITH_CHACHA20_POLY1305 ciphersuite
- expose padding and MAC-ing functions in RecordLayer

0.5.1 - 2015-11-05
- fix SRP_SHA_RSA ciphersuites in TLSv1.2 (for real this time)
- minor enchancements in test scripts
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.5.1",
version="0.6.0-alpha1",
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
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.5.1
@version: 0.6.0-alpha1
"""

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.5.1"
__version__ = "0.6.0-alpha1"
from .constants import AlertLevel, AlertDescription, Fault
from .errors import *
from .checker import Checker
Expand Down

0 comments on commit 021bef0

Please sign in to comment.