Skip to content

Commit

Permalink
release 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Jan 2, 2025
1 parent 5c20543 commit 831c694
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tlslite-ng version 0.8.0 (2024-12-17)
tlslite-ng version 0.8.1 (2025-01-02)

[![GitHub CI](https://github.com/tlsfuzzer/tlslite-ng/actions/workflows/ci.yml/badge.svg)](https://github.com/tlsfuzzer/tlslite-ng/actions/workflows/ci.yml)
[![Read the Docs](https://img.shields.io/readthedocs/tlslite-ng)](https://tlslite-ng.readthedocs.io/en/latest/)
Expand Down Expand Up @@ -582,6 +582,10 @@ TLSAsyncioDispatcherMixIn.py.
11 History
===========
0.8.1 - 2025-01-02
* apply checks to `ec_point_formats` extension only when negotiating TLS 1.2
or earlier (Ganna Starovoytova)
0.8.0 - 2024-12-17
* DEPRECATION NOTICE: camelCase method and argument names are considered now
deprecated, ones that use underscore_separator are now the primary ones
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# -- Project information -----------------------------------------------------

project = u'tlslite-ng'
copyright = u'2024, Alicja Kario'
copyright = u'2025, Alicja Kario'
author = u'Alicja Kario'

# The version info for the project you're documenting, acts as replacement for
Expand All @@ -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'
release = u'0.8.1'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions 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",
version="0.8.1",
author="Alicja Kario",
author_email="[email protected]",
url="https://github.com/tlsfuzzer/tlslite-ng",
Expand All @@ -26,7 +26,7 @@
obsoletes=["tlslite"],
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*",
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Operating System :: OS Independent',
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"
__version__ = "0.8.1"
# 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 831c694

Please sign in to comment.