Skip to content

Commit 7284d46

Browse files
committed
release 0.8.0-beta6
1 parent dc34709 commit 7284d46

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ Functionality implemented include:
4141
- Record Size Limit (RFC 8449)
4242
- TLS Certificate Compression (RFC 8879)
4343
- Hybrid ML-KEM key exchage groups (draft-kwiatkowski-tls-ecdhe-mlkem-02)
44+
- support for Brainpool curves in TLS 1.2 and TLS 1.3
4445

4546

4647
tlslite-ng aims to be a drop-in replacement for tlslite while providing more

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tlslite-ng version 0.8.0-beta5 (2024-10-18)
1+
tlslite-ng version 0.8.0-beta6 (2024-11-27)
22

33
[![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)
44
[![Read the Docs](https://img.shields.io/readthedocs/tlslite-ng)](https://tlslite-ng.readthedocs.io/en/latest/)
@@ -706,7 +706,7 @@ TLSAsyncioDispatcherMixIn.py.
706706
of shared secrets (Ganna Starovoytova)
707707
* fix sending of session ticket extension from the server without
708708
a ticket (George Pantelakis)
709-
* add Brainpool IDs for TLS 1.3 from RFC 8734
709+
* add support for Brainpool curves in TLS 1.3 from RFC 8734
710710
* add support for compress_certificate extension from RFC 8879
711711
(George Pantelakis)
712712
* Fix int_to_bytes and numberToByteArray encoding of 0 with length not
@@ -715,6 +715,8 @@ TLSAsyncioDispatcherMixIn.py.
715715
* (Experimental) Support for hybrid KEM key exchange groups from
716716
draft-kwiatkowski-tls-ecdhe-mlkem-02. To work, kyber-py v1.0 library must
717717
be installed.
718+
* support for setting a list of supported key exchange groups in the
719+
`tls.py server`
718720
719721
0.7.0 - 2017-07-31
720722

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# The short X.Y version.
3535
version = u'0.8'
3636
# The full version, including alpha/beta/rc tags.
37-
release = u'0.8.0-beta5'
37+
release = u'0.8.0-beta6'
3838

3939

4040
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
README = f.read()
1212

1313
setup(name="tlslite-ng",
14-
version="0.8.0-beta5",
14+
version="0.8.0-beta6",
1515
author="Alicja Kario",
1616
author_email="[email protected]",
1717
url="https://github.com/tlsfuzzer/tlslite-ng",

tlslite/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# See the LICENSE file for legal information regarding use of this file.
66

7-
__version__ = "0.8.0-beta5"
7+
__version__ = "0.8.0-beta6"
88
# the whole module is about importing most commonly used methods, for use
99
# by other applications
1010
# pylint: disable=unused-import

0 commit comments

Comments
 (0)