Skip to content

Commit ba2b058

Browse files
authored
Merge pull request #459 from tlsfuzzer/readme-updates
Readme updates for 0.8.0-alpha40
2 parents 015277a + 5c251eb commit ba2b058

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tlslite-ng version 0.8.0-alpha39 (2020-12-19)
1+
tlslite-ng version 0.8.0-alpha40 (2021-01-22)
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/)
@@ -678,6 +678,12 @@ may not work with all asyncore.dispatcher subclasses.
678678
* small optimisations to PRF methods, speeds to handshake
679679
* support for MD5 signatures in X.509 certificates (Jean-Romain Garnier)
680680
* add support for Brainpool curves in TLS 1.2 and earlier (pytz)
681+
* fix wrong error message in AES implementation (Bernt Røskar Brenna)
682+
* migrate to Github Action for CI
683+
* fix API break caused by the workaround for Bleichenbacher; RSA keys generated
684+
in-memory with m2crypto wouldn't work for decryption/encryption
685+
* handle too short RSA ciphertexts for the key size consistently between
686+
backends
681687
682688
683689
0.7.0 - 2017-07-31

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252

5353
# General information about the project.
5454
project = u'tlslite-ng'
55-
copyright = u'2020, Hubert Kario'
55+
copyright = u'2021, Hubert Kario'
5656
author = u'Hubert Kario'
5757

5858
# The version info for the project you're documenting, acts as replacement for
@@ -62,7 +62,7 @@
6262
# The short X.Y version.
6363
version = u'0.8'
6464
# The full version, including alpha/beta/rc tags.
65-
release = u'0.8.0-alpha39'
65+
release = u'0.8.0-alpha40'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
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-alpha39",
14+
version="0.8.0-alpha40",
1515
author="Hubert Kario",
1616
author_email="[email protected]",
1717
url="https://github.com/tlsfuzzer/tlslite-ng",

tlslite/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Author: Trevor Perrin
22
# See the LICENSE file for legal information regarding use of this file.
33

4-
__version__ = "0.8.0-alpha39"
4+
__version__ = "0.8.0-alpha40"
55
from .constants import AlertLevel, AlertDescription, Fault
66
from .errors import *
77
from .checker import Checker

0 commit comments

Comments
 (0)