Skip to content

Commit

Permalink
release 0.8.0-beta6
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Nov 27, 2024
1 parent dc34709 commit 7284d46
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Functionality implemented include:
- Record Size Limit (RFC 8449)
- TLS Certificate Compression (RFC 8879)
- Hybrid ML-KEM key exchage groups (draft-kwiatkowski-tls-ecdhe-mlkem-02)
- support for Brainpool curves in TLS 1.2 and TLS 1.3


tlslite-ng aims to be a drop-in replacement for tlslite while providing more
Expand Down
6 changes: 4 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-beta5 (2024-10-18)
tlslite-ng version 0.8.0-beta6 (2024-11-27)

[![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 @@ -706,7 +706,7 @@ TLSAsyncioDispatcherMixIn.py.
of shared secrets (Ganna Starovoytova)
* fix sending of session ticket extension from the server without
a ticket (George Pantelakis)
* add Brainpool IDs for TLS 1.3 from RFC 8734
* add support for Brainpool curves in TLS 1.3 from RFC 8734
* add support for compress_certificate extension from RFC 8879
(George Pantelakis)
* Fix int_to_bytes and numberToByteArray encoding of 0 with length not
Expand All @@ -715,6 +715,8 @@ TLSAsyncioDispatcherMixIn.py.
* (Experimental) Support for hybrid KEM key exchange groups from
draft-kwiatkowski-tls-ecdhe-mlkem-02. To work, kyber-py v1.0 library must
be installed.
* support for setting a list of supported key exchange groups in the
`tls.py server`

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 @@ -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-beta5'
release = u'0.8.0-beta6'


# -- General configuration ---------------------------------------------------
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-beta5",
version="0.8.0-beta6",
author="Alicja Kario",
author_email="[email protected]",
url="https://github.com/tlsfuzzer/tlslite-ng",
Expand Down
2 changes: 1 addition & 1 deletion tlslite/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# See the LICENSE file for legal information regarding use of this file.

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

0 comments on commit 7284d46

Please sign in to comment.