From 1923d638579a331f7e0115d16928645e32534143 Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Thu, 12 Nov 2015 15:43:25 +0100 Subject: [PATCH] release 0.6.0-alpha1 --- README.md | 4 ++-- setup.py | 2 +- tlslite/__init__.py | 2 +- tlslite/api.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d5dbbb84..2d50b050 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ ``` -tlslite-ng version 0.6.0-alpha1 2015-11-11 +tlslite-ng version 0.6.0-alpha2 2015-11-12 Hubert Kario https://github.com/tomato42/tlslite-ng/ ``` @@ -524,7 +524,7 @@ encrypt-then-MAC mode for CBC ciphers. 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 + - expose padding and MAC-ing functions and blockSize property in RecordLayer 0.5.1 - 2015-11-05 - fix SRP_SHA_RSA ciphersuites in TLSv1.2 (for real this time) diff --git a/setup.py b/setup.py index 3276acdc..31bff4b7 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup(name="tlslite-ng", - version="0.6.0-alpha1", + version="0.6.0-alpha2", author="Hubert Kario", author_email="hkario@redhat.com", url="https://github.com/tomato42/tlslite-ng", diff --git a/tlslite/__init__.py b/tlslite/__init__.py index aef24efa..f078a5ea 100644 --- a/tlslite/__init__.py +++ b/tlslite/__init__.py @@ -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.6.0-alpha1 +@version: 0.6.0-alpha2 """ from tlslite.api import * diff --git a/tlslite/api.py b/tlslite/api.py index 825274a4..e9680898 100644 --- a/tlslite/api.py +++ b/tlslite/api.py @@ -1,7 +1,7 @@ # Author: Trevor Perrin # See the LICENSE file for legal information regarding use of this file. -__version__ = "0.6.0-alpha1" +__version__ = "0.6.0-alpha2" from .constants import AlertLevel, AlertDescription, Fault from .errors import * from .checker import Checker