From c93df82603ab4a72c8d65645a3aeee73eeb24b3f Mon Sep 17 00:00:00 2001 From: Alicja Kario Date: Wed, 22 Jan 2025 18:14:41 +0100 Subject: [PATCH] release 0.8.2 --- README.md | 7 ++++++- docs/conf.py | 2 +- setup.py | 2 +- tlslite/api.py | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a3626e91..1dd4076a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -tlslite-ng version 0.8.1 (2025-01-02) +tlslite-ng version 0.8.2 (2025-01-22) [![GitHub CI](https://github.com/tlsfuzzer/tlslite-ng/actions/workflows/ci.yml/badge.svg)](https://github.com/tlsfuzzer/tlslite-ng/actions/workflows/ci.yml) [![Read the Docs](https://img.shields.io/readthedocs/tlslite-ng)](https://tlslite-ng.readthedocs.io/en/latest/) @@ -582,6 +582,11 @@ TLSAsyncioDispatcherMixIn.py. 11 History =========== +0.8.2 - 2025-01-22 +* additional test vectors for the RSA implicit rejection mechanism +* fix negotiation of TLS 1.2 Brainpool key exchanges in TLS 1.3, only + TLS 1.3 specific groups now can be negotiated in TLS 1.3 + 0.8.1 - 2025-01-02 * apply checks to `ec_point_formats` extension only when negotiating TLS 1.2 or earlier (Ganna Starovoytova) diff --git a/docs/conf.py b/docs/conf.py index cae5b0fb..8a927f58 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -34,7 +34,7 @@ # The short X.Y version. version = u'0.8' # The full version, including alpha/beta/rc tags. -release = u'0.8.1' +release = u'0.8.2' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index e560d95b..d15d3b03 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ README = f.read() setup(name="tlslite-ng", - version="0.8.1", + version="0.8.2", author="Alicja Kario", author_email="hkario@redhat.com", url="https://github.com/tlsfuzzer/tlslite-ng", diff --git a/tlslite/api.py b/tlslite/api.py index 40e2f5c5..4b1db819 100644 --- a/tlslite/api.py +++ b/tlslite/api.py @@ -4,7 +4,7 @@ # # See the LICENSE file for legal information regarding use of this file. -__version__ = "0.8.1" +__version__ = "0.8.2" # the whole module is about importing most commonly used methods, for use # by other applications # pylint: disable=unused-import