Skip to content

Commit

Permalink
release 0.8.0-alpha42
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Aug 6, 2021
1 parent 80b4c7a commit 7b7a811
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions README.md
@@ -1,4 +1,4 @@
tlslite-ng version 0.8.0-alpha41 (2021-05-26)
tlslite-ng version 0.8.0-alpha42 (2021-08-06)

[![Build Status](https://github.com/tlsfuzzer/tlslite-ng/workflows/GitHub%20CI/badge.svg?branch=master)](https://github.com/tlsfuzzer/tlslite-ng/actions?query=workflow%3A%22GitHub+CI%22+branch%3Amaster)
[![Read the Docs](https://img.shields.io/readthedocs/tlslite-ng)](https://tlslite-ng.readthedocs.io/en/latest/)
Expand Down Expand Up @@ -61,13 +61,14 @@ Implemented TLS features include:
* Extended master secret
* padding extension
* keying material exporter
* RSA, RSA-PSS and ECDSA certificates
* RSA, RSA-PSS, ECDSA, and EdDSA certificates
* ticket based session resumption in TLSv1.3
* 1-RTT handshake, Hello Retry Request, middlebox compatibility mode,
cookie extension, post-handshake authentication and KeyUpdate
(TLS 1.3)
* FFDHE supported_groups extension
* X25519 and X448 ECDHE key exchange
* Ed25519 and Ed448 EdDSA signatures
* (experimental) TACK extension
* heartbeat extension and protocol
* Record Size Limit extension
Expand Down Expand Up @@ -686,6 +687,9 @@ may not work with all asyncore.dispatcher subclasses.
backends
* strict handling of CCS in TLS 1.3 (don't allow it post handshake)
* improved RSA key generation - don't generate biased primes
* support for both encodings of RSA-PSS algorithm identifier in X.509
* Support for EdDSA (Ed25519 and Ed448) in TLS 1.2 and TLS 1.3, both
for server and client certificates


0.7.0 - 2017-07-31
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -62,7 +62,7 @@
# The short X.Y version.
version = u'0.8'
# The full version, including alpha/beta/rc tags.
release = u'0.8.0-alpha41'
release = u'0.8.0-alpha42'

# 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
Expand Up @@ -11,7 +11,7 @@
README = f.read()

setup(name="tlslite-ng",
version="0.8.0-alpha41",
version="0.8.0-alpha42",
author="Hubert Kario",
author_email="hkario@redhat.com",
url="https://github.com/tlsfuzzer/tlslite-ng",
Expand Down
2 changes: 1 addition & 1 deletion 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-alpha41"
__version__ = "0.8.0-alpha42"
from .constants import AlertLevel, AlertDescription, Fault
from .errors import *
from .checker import Checker
Expand Down

0 comments on commit 7b7a811

Please sign in to comment.