Skip to content

Commit

Permalink
release v0.8.0-alpha28
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Oct 10, 2019
1 parent b2ba24d commit eb7f6df
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tlslite-ng version 0.8.0-alpha27 (2019-09-16)
tlslite-ng version 0.8.0-alpha28 (2019-10-10)

[![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 @@ -64,7 +64,7 @@ Implemented TLS features include:
* Extended master secret
* padding extension
* keying material exporter
* RSA-PSS signatures in TLSv1.2, RSA-PSS in certificates (TLSv1.3 extension)
* RSA, RSA-PSS and ECDSA certificates
* ticket based session resumption in TLSv1.3
* 1-RTT handshake, Hello Retry Request, middlebox compatibility mode and
cookie extension
Expand Down Expand Up @@ -639,6 +639,7 @@ may not work with all asyncore.dispatcher subclasses.
* reimplement HMAC in pure python to work-around platforms that disable MD5
HMAC in python (this goes against FIPS requirements)
* fix few minor bugs in handling heartbeat messages
* support for ECDSA certificates (server and client, all versions of TLS)

0.7.0 - 2017-07-31

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-alpha27'
release = u'0.8.0-alpha28'

# 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-alpha27",
version="0.8.0-alpha28",
author="Hubert Kario",
author_email="hkario@redhat.com",
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-alpha27
@version: 0.8.0-alpha28
"""

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

0 comments on commit eb7f6df

Please sign in to comment.