Skip to content

Commit 831c694

Browse files
committed
release 0.8.1
1 parent 5c20543 commit 831c694

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tlslite-ng version 0.8.0 (2024-12-17)
1+
tlslite-ng version 0.8.1 (2025-01-02)
22

33
[![GitHub CI](https://github.com/tlsfuzzer/tlslite-ng/actions/workflows/ci.yml/badge.svg)](https://github.com/tlsfuzzer/tlslite-ng/actions/workflows/ci.yml)
44
[![Read the Docs](https://img.shields.io/readthedocs/tlslite-ng)](https://tlslite-ng.readthedocs.io/en/latest/)
@@ -582,6 +582,10 @@ TLSAsyncioDispatcherMixIn.py.
582582
11 History
583583
===========
584584
585+
0.8.1 - 2025-01-02
586+
* apply checks to `ec_point_formats` extension only when negotiating TLS 1.2
587+
or earlier (Ganna Starovoytova)
588+
585589
0.8.0 - 2024-12-17
586590
* DEPRECATION NOTICE: camelCase method and argument names are considered now
587591
deprecated, ones that use underscore_separator are now the primary ones

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# -- Project information -----------------------------------------------------
2525

2626
project = u'tlslite-ng'
27-
copyright = u'2024, Alicja Kario'
27+
copyright = u'2025, Alicja Kario'
2828
author = u'Alicja 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'
37+
release = u'0.8.1'
3838

3939

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

setup.py

+2-2
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",
14+
version="0.8.1",
1515
author="Alicja Kario",
1616
author_email="[email protected]",
1717
url="https://github.com/tlsfuzzer/tlslite-ng",
@@ -26,7 +26,7 @@
2626
obsoletes=["tlslite"],
2727
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*",
2828
classifiers=[
29-
'Development Status :: 4 - Beta',
29+
'Development Status :: 5 - Production/Stable',
3030
'Intended Audience :: Developers',
3131
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
3232
'Operating System :: OS Independent',

tlslite/api.py

+1-1
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"
7+
__version__ = "0.8.1"
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)