Skip to content

Commit

Permalink
release 0.8.0-beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Aug 22, 2024
1 parent 396dd5c commit 04c1e80
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tlslite-ng version 0.8.0-beta1 (2023-08-24)
tlslite-ng version 0.8.0-beta2 (2024-08-22)

[![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)
[![Read the Docs](https://img.shields.io/readthedocs/tlslite-ng)](https://tlslite-ng.readthedocs.io/en/latest/)
Expand Down Expand Up @@ -95,7 +95,7 @@ Currently it is distributed under Gnu LGPLv2 license.
Requirements:

* Python 2.6 or higher is required.
* Python 3.5 or higher is supported.
* Python 3.6 or higher is supported.
* python ecdsa >= 0.13.3 library
([GitHub](https://github.com/warner/python-ecdsa),
[PyPI](https://pypi.python.org/pypi/ecdsa))
Expand Down Expand Up @@ -702,6 +702,11 @@ TLSAsyncioDispatcherMixIn.py.
other backends)
* Ticket based session resumption in TLS 1.2 and earlier
* strict size checking of `session_id` field in ClientHello
* use python-ecdsa code for parsing ECDH key shares, speed up calculation
of shared secrets (Ganna Starovoytova)
* fix sending of session ticket extension from the server without
a ticket (George Pantelakis)
* add Brainpool IDs for TLS 1.3 from RFC 8734

0.7.0 - 2017-07-31

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'2023, Hubert Kario'
copyright = u'2024, Hubert Kario'
author = u'Hubert 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-beta1'
release = u'0.8.0-beta2'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion 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-beta1",
version="0.8.0-beta2",
author="Hubert Kario",
author_email="hkario@redhat.com",
url="https://github.com/tlsfuzzer/tlslite-ng",
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-beta1"
__version__ = "0.8.0-beta2"
# 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 04c1e80

Please sign in to comment.