Skip to content

Commit

Permalink
Release 0.8.0-alpha44
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Jun 9, 2023
1 parent 5a7be8c commit 3e656ca
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
7 changes: 5 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-alpha43 (2022-05-11)
tlslite-ng version 0.8.0-alpha44 (2022-06-09)

[![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 @@ -585,7 +585,7 @@ may not work with all asyncore.dispatcher subclasses.
follow this new style and new deprecations will be introduced as time goes
on. Please run your test suite with `-Wd` to see where the depracated calls
are being made, the python standard DeprecationWarning will be emited there)
* Python 3.2 is not supported any more (dropped by python-ecdsa)
* Python 3.2, 3.3, and 3.4 is not supported any more (dropped by python-ecdsa)
* fix compatibility issue with 8192 bit SRP group from RFC 5054
* fix CVE-2018-1000159 - incorrect verification of MAC in MAC then Encrypt
mode
Expand Down Expand Up @@ -691,6 +691,9 @@ may not work with all asyncore.dispatcher subclasses.
* Support for EdDSA (Ed25519 and Ed448) in TLS 1.2 and TLS 1.3, both
for server and client certificates
* Support for echo server in the example tls.py script
* Better handling of HMACs in FIPS mode
* Generate RSA keys with 65537 as public exponent with m2crypto (as with
other backends)
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 @@ -52,7 +52,7 @@

# General information about the project.
project = u'tlslite-ng'
copyright = u'2022, Hubert Kario'
copyright = u'2023, Hubert Kario'
author = u'Hubert Kario'

# The version info for the project you're documenting, acts as replacement for
Expand All @@ -62,7 +62,7 @@
# The short X.Y version.
version = u'0.8'
# The full version, including alpha/beta/rc tags.
release = u'0.8.0-alpha43'
release = u'0.8.0-alpha44'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
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-alpha43",
version="0.8.0-alpha44",
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
@@ -1,7 +1,7 @@
# Author: Trevor Perrin
# See the LICENSE file for legal information regarding use of this file.

__version__ = "0.8.0-alpha43"
__version__ = "0.8.0-alpha44"
from .constants import AlertLevel, AlertDescription, Fault
from .errors import *
from .checker import Checker
Expand Down

0 comments on commit 3e656ca

Please sign in to comment.