From 029425144f6b26d5ab8acc3a79e3ead79253ad71 Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Fri, 18 Jan 2019 18:38:03 +0100 Subject: [PATCH] release 0.8.0-alpha26 --- README.md | 2 +- docs/conf.py | 2 +- setup.py | 2 +- tlslite/__init__.py | 2 +- tlslite/api.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 12a32320..f5a8655a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -tlslite-ng version 0.8.0-alpha25 (2019-01-16) +tlslite-ng version 0.8.0-alpha26 (2019-01-18) [![Build Status](https://travis-ci.org/tomato42/tlslite-ng.svg?branch=master)](https://travis-ci.org/tomato42/tlslite-ng) [![Coverage Status](https://coveralls.io/repos/tomato42/tlslite-ng/badge.svg?branch=master)](https://coveralls.io/r/tomato42/tlslite-ng?branch=master) diff --git a/docs/conf.py b/docs/conf.py index 10edbb1e..ef4e9cac 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,7 +61,7 @@ # The short X.Y version. version = u'0.8' # The full version, including alpha/beta/rc tags. -release = u'0.8.0-alpha25' +release = u'0.8.0-alpha26' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index e214c5a5..ca8202a6 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ README = f.read() setup(name="tlslite-ng", - version="0.8.0-alpha25", + version="0.8.0-alpha26", 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 e2137a79..9917cc91 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.8.0-alpha25 +@version: 0.8.0-alpha26 """ from tlslite.api import * diff --git a/tlslite/api.py b/tlslite/api.py index 785ff2bd..0c088da6 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.8.0-alpha25" +__version__ = "0.8.0-alpha26" from .constants import AlertLevel, AlertDescription, Fault from .errors import * from .checker import Checker