Skip to content

Commit

Permalink
release 0.8.0-alpha15
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Jul 19, 2018
1 parent 2a919cb commit 035e5b5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tlslite-ng version 0.8.0-alpha14 (2018-07-16)
tlslite-ng version 0.8.0-alpha15 (2018-07-19)

[![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)
Expand Down Expand Up @@ -614,6 +614,8 @@ encrypt-then-MAC mode for CBC ciphers.
* pure PSK
* session resumption in TLS 1.3 using PSK tickets
* padding support (Stanislav Zidek)
* 0-RTT handshake tolerance (the early data will be ignored but handshake
will succeed)
* fix minor compatibility issue with Jython2.7 (Filip Goldefus)
* higher precision of throughput measurement on non-Linux platforms
(Efthimis Iosifidis)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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-alpha14'
release = u'0.8.0-alpha15'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
README = f.read()

setup(name="tlslite-ng",
version="0.8.0-alpha14",
version="0.8.0-alpha15",
author="Hubert Kario",
author_email="[email protected]",
url="https://github.com/tomato42/tlslite-ng",
Expand Down
2 changes: 1 addition & 1 deletion tlslite/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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-alpha14
@version: 0.8.0-alpha15
"""

from tlslite.api import *
Expand Down
2 changes: 1 addition & 1 deletion tlslite/api.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Author: Trevor Perrin
# See the LICENSE file for legal information regarding use of this file.

__version__ = "0.8.0-alpha14"
__version__ = "0.8.0-alpha15"
from .constants import AlertLevel, AlertDescription, Fault
from .errors import *
from .checker import Checker
Expand Down

0 comments on commit 035e5b5

Please sign in to comment.