Skip to content

Commit

Permalink
release v0.8.0-alpha10
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Jun 8, 2018
1 parent a7daf0f commit 3b9ead6
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Functionality implemented include:
- x25519 and x448 curves for ECDHE_RSA key exchage (RFC 7748. RFC 4492bis)
- anonymous DHE key exchange
- anonymous ECDH key exchange
- PSK key exchange in TLS 1.3
- PSK and PSK-DH key exchange in TLS 1.3
- session ticket based resumption in TLS 1.3
- NULL encryption ciphersuites
- FALLBACK_SCSV (RFC 7507)
Expand Down
3 changes: 2 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-alpha9 (2018-06-06)
tlslite-ng version 0.8.0-alpha10 (2018-06-08)

[![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 @@ -611,6 +611,7 @@ encrypt-then-MAC mode for CBC ciphers.
* 1-RTT handshake mode
* HelloRetryRequest support
* PSK with (EC)DH key exchange
* pure PSK
* session resumption in TLS 1.3 using PSK tickets
* padding support (Stanislav Zidek)
* fix minor compatibility issue with Jython2.7 (Filip Goldefus)
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

# General information about the project.
project = u'tlslite-ng'
copyright = u'2017, Hubert Kario'
copyright = u'2018, Hubert Kario'
author = u'Hubert Kario'

# The version info for the project you're documenting, acts as replacement for
Expand All @@ -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-alpha9'
release = u'0.8.0-alpha10'

# 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-alpha9",
version="0.8.0-alpha10",
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-alpha9
@version: 0.8.0-alpha10
"""

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-alpha9"
__version__ = "0.8.0-alpha10"
from .constants import AlertLevel, AlertDescription, Fault
from .errors import *
from .checker import Checker
Expand Down

0 comments on commit 3b9ead6

Please sign in to comment.