Skip to content

Commit 7da1a3f

Browse files
committed
release v0.8.0-alpha14
1 parent d976188 commit 7da1a3f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tlslite-ng version 0.8.0-alpha13 (2018-06-25)
1+
tlslite-ng version 0.8.0-alpha14 (2018-07-16)
22

33
[![Build Status](https://travis-ci.org/tomato42/tlslite-ng.svg?branch=master)](https://travis-ci.org/tomato42/tlslite-ng)
44
[![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.
605605
* Compatibility with M2Crypto on Python 3
606606
* fix Python 2 comaptibility issue with X.509 DER parsing (Erkki Vahala)
607607
* TLS 1.3
608-
* draft-26 support
608+
* draft-28 support
609609
* TLS 1.3 specific ciphers (AES-GCM and Chacha20)
610610
* TLS 1.3 specific extensions and extension code points
611611
* 1-RTT handshake mode

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = u'0.8'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'0.8.0-alpha13'
64+
release = u'0.8.0-alpha14'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
README = f.read()
1212

1313
setup(name="tlslite-ng",
14-
version="0.8.0-alpha13",
14+
version="0.8.0-alpha14",
1515
author="Hubert Kario",
1616
author_email="hkario@redhat.com",
1717
url="https://github.com/tomato42/tlslite-ng",

tlslite/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Then use the L{tlslite.TLSConnection.TLSConnection} class with a socket.
2222
(Or, use one of the integration classes in L{tlslite.integration}).
2323
24-
@version: 0.8.0-alpha13
24+
@version: 0.8.0-alpha14
2525
"""
2626

2727
from tlslite.api import *

tlslite/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Author: Trevor Perrin
22
# See the LICENSE file for legal information regarding use of this file.
33

4-
__version__ = "0.8.0-alpha13"
4+
__version__ = "0.8.0-alpha14"
55
from .constants import AlertLevel, AlertDescription, Fault
66
from .errors import *
77
from .checker import Checker

0 commit comments

Comments
 (0)