Skip to content

Commit 04c1e80

Browse files
committed
release 0.8.0-beta2
1 parent 396dd5c commit 04c1e80

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tlslite-ng version 0.8.0-beta1 (2023-08-24)
1+
tlslite-ng version 0.8.0-beta2 (2024-08-22)
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/)
@@ -95,7 +95,7 @@ Currently it is distributed under Gnu LGPLv2 license.
9595
Requirements:
9696

9797
* Python 2.6 or higher is required.
98-
* Python 3.5 or higher is supported.
98+
* Python 3.6 or higher is supported.
9999
* python ecdsa >= 0.13.3 library
100100
([GitHub](https://github.com/warner/python-ecdsa),
101101
[PyPI](https://pypi.python.org/pypi/ecdsa))
@@ -702,6 +702,11 @@ TLSAsyncioDispatcherMixIn.py.
702702
other backends)
703703
* Ticket based session resumption in TLS 1.2 and earlier
704704
* strict size checking of `session_id` field in ClientHello
705+
* use python-ecdsa code for parsing ECDH key shares, speed up calculation
706+
of shared secrets (Ganna Starovoytova)
707+
* fix sending of session ticket extension from the server without
708+
a ticket (George Pantelakis)
709+
* add Brainpool IDs for TLS 1.3 from RFC 8734
705710
706711
0.7.0 - 2017-07-31
707712

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# -- Project information -----------------------------------------------------
2525

2626
project = u'tlslite-ng'
27-
copyright = u'2023, Hubert Kario'
27+
copyright = u'2024, Hubert Kario'
2828
author = u'Hubert Kario'
2929

3030
# The version info for the project you're documenting, acts as replacement for
@@ -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-beta1'
37+
release = u'0.8.0-beta2'
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-beta1",
14+
version="0.8.0-beta2",
1515
author="Hubert Kario",
1616
author_email="hkario@redhat.com",
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-beta1"
7+
__version__ = "0.8.0-beta2"
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)