Skip to content

Commit 9342e5e

Browse files
committed
release 0.8.0
1 parent ae03030 commit 9342e5e

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tlslite-ng version 0.8.0-beta6 (2024-11-27)
1+
tlslite-ng version 0.8.0 (2024-12-17)
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/)
@@ -582,7 +582,7 @@ TLSAsyncioDispatcherMixIn.py.
582582
11 History
583583
===========
584584
585-
0.8.0 - wip
585+
0.8.0 - 2024-12-17
586586
* DEPRECATION NOTICE: camelCase method and argument names are considered now
587587
deprecated, ones that use underscore_separator are now the primary ones
588588
(the procedure to support it is not yet finished, but any new code must
@@ -717,6 +717,7 @@ TLSAsyncioDispatcherMixIn.py.
717717
be installed.
718718
* support for setting a list of supported key exchange groups in the
719719
`tls.py server`
720+
* support for ec_point_format extension (Ganna Starovoytova)
720721
721722
0.7.0 - 2017-07-31
722723

docs/conf.py

+1-1
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-beta6'
37+
release = u'0.8.0'
3838

3939

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

setup.py

+1-1
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-beta6",
14+
version="0.8.0",
1515
author="Alicja Kario",
1616
author_email="[email protected]",
1717
url="https://github.com/tlsfuzzer/tlslite-ng",

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-beta6"
7+
__version__ = "0.8.0"
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)