File tree 4 files changed +11
-6
lines changed 4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1
- tlslite-ng version 0.8.0-beta1 (2023 -08-24 )
1
+ tlslite-ng version 0.8.0-beta2 (2024 -08-22 )
2
2
3
3
[ ![ 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 )
4
4
[ ![ 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.
95
95
Requirements:
96
96
97
97
* Python 2.6 or higher is required.
98
- * Python 3.5 or higher is supported.
98
+ * Python 3.6 or higher is supported.
99
99
* python ecdsa >= 0.13.3 library
100
100
([ GitHub] ( https://github.com/warner/python-ecdsa ) ,
101
101
[ PyPI] ( https://pypi.python.org/pypi/ecdsa ) )
@@ -702,6 +702,11 @@ TLSAsyncioDispatcherMixIn.py.
702
702
other backends)
703
703
* Ticket based session resumption in TLS 1.2 and earlier
704
704
* 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
705
710
706
711
0.7.0 - 2017-07-31
707
712
Original file line number Diff line number Diff line change 24
24
# -- Project information -----------------------------------------------------
25
25
26
26
project = u'tlslite-ng'
27
- copyright = u'2023 , Hubert Kario'
27
+ copyright = u'2024 , Hubert Kario'
28
28
author = u'Hubert Kario'
29
29
30
30
# The version info for the project you're documenting, acts as replacement for
34
34
# The short X.Y version.
35
35
version = u'0.8'
36
36
# The full version, including alpha/beta/rc tags.
37
- release = u'0.8.0-beta1 '
37
+ release = u'0.8.0-beta2 '
38
38
39
39
40
40
# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 11
11
README = f .read ()
12
12
13
13
setup (name = "tlslite-ng" ,
14
- version = "0.8.0-beta1 " ,
14
+ version = "0.8.0-beta2 " ,
15
15
author = "Hubert Kario" ,
16
16
author_email = "hkario@redhat.com" ,
17
17
url = "https://github.com/tlsfuzzer/tlslite-ng" ,
Original file line number Diff line number Diff line change 4
4
#
5
5
# See the LICENSE file for legal information regarding use of this file.
6
6
7
- __version__ = "0.8.0-beta1 "
7
+ __version__ = "0.8.0-beta2 "
8
8
# the whole module is about importing most commonly used methods, for use
9
9
# by other applications
10
10
# pylint: disable=unused-import
You can’t perform that action at this time.
0 commit comments