From 9342e5e5526d650874a3c5092000aa63836880c4 Mon Sep 17 00:00:00 2001 From: Alicja Kario Date: Tue, 17 Dec 2024 17:25:23 +0100 Subject: [PATCH] release 0.8.0 --- README.md | 5 +++-- docs/conf.py | 2 +- setup.py | 2 +- tlslite/api.py | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3d421d54..4d5f9285 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -tlslite-ng version 0.8.0-beta6 (2024-11-27) +tlslite-ng version 0.8.0 (2024-12-17) [![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/) @@ -582,7 +582,7 @@ TLSAsyncioDispatcherMixIn.py. 11 History =========== -0.8.0 - wip +0.8.0 - 2024-12-17 * DEPRECATION NOTICE: camelCase method and argument names are considered now deprecated, ones that use underscore_separator are now the primary ones (the procedure to support it is not yet finished, but any new code must @@ -717,6 +717,7 @@ TLSAsyncioDispatcherMixIn.py. be installed. * support for setting a list of supported key exchange groups in the `tls.py server` +* support for ec_point_format extension (Ganna Starovoytova) 0.7.0 - 2017-07-31 diff --git a/docs/conf.py b/docs/conf.py index 744c9b16..7d792a77 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.0-beta6' +release = u'0.8.0' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 022b64a2..d68ec387 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ README = f.read() setup(name="tlslite-ng", - version="0.8.0-beta6", + version="0.8.0", 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 fde5beca..2872f9fd 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.0-beta6" +__version__ = "0.8.0" # the whole module is about importing most commonly used methods, for use # by other applications # pylint: disable=unused-import