diff --git a/README.md b/README.md index 39fffaf5..f71efcf1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -tlslite-ng version 0.8.0-alpha13 (2018-06-25) +tlslite-ng version 0.8.0-alpha14 (2018-07-16) [![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) @@ -605,7 +605,7 @@ encrypt-then-MAC mode for CBC ciphers. * Compatibility with M2Crypto on Python 3 * fix Python 2 comaptibility issue with X.509 DER parsing (Erkki Vahala) * TLS 1.3 - * draft-26 support + * draft-28 support * TLS 1.3 specific ciphers (AES-GCM and Chacha20) * TLS 1.3 specific extensions and extension code points * 1-RTT handshake mode diff --git a/docs/conf.py b/docs/conf.py index 557daac2..7083acdf 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-alpha13' +release = u'0.8.0-alpha14' # 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 88c9d1cc..607cbdc2 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ README = f.read() setup(name="tlslite-ng", - version="0.8.0-alpha13", + version="0.8.0-alpha14", 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 9f490cc2..d4995e9a 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-alpha13 +@version: 0.8.0-alpha14 """ from tlslite.api import * diff --git a/tlslite/api.py b/tlslite/api.py index 817bc8e0..3c79962b 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-alpha13" +__version__ = "0.8.0-alpha14" from .constants import AlertLevel, AlertDescription, Fault from .errors import * from .checker import Checker