From 6279f3bf35f78fade5ca1305449c25d9f4a8d7c0 Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Thu, 9 Jun 2016 16:56:20 +0200 Subject: [PATCH] release 0.6.0-alpha5 --- README.md | 2 +- setup.py | 2 +- tlslite/__init__.py | 2 +- tlslite/api.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 23a9d345..58f31a5c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ ``` -tlslite-ng version 0.6.0-alpha4 2016-01-14 +tlslite-ng version 0.6.0-alpha5 2016-06-09 Hubert Kario https://github.com/tomato42/tlslite-ng/ ``` diff --git a/setup.py b/setup.py index 20806544..17d7d9a2 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup(name="tlslite-ng", - version="0.6.0-alpha4", + version="0.6.0-alpha5", 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 a09937be..a10d4529 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-alpha4 +@version: 0.6.0-alpha5 """ from tlslite.api import * diff --git a/tlslite/api.py b/tlslite/api.py index c5f097df..1aed6ad4 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-alpha4" +__version__ = "0.6.0-alpha5" from .constants import AlertLevel, AlertDescription, Fault from .errors import * from .checker import Checker