Skip to content

Commit

Permalink
Merge pull request #459 from tlsfuzzer/readme-updates
Browse files Browse the repository at this point in the history
Readme updates for 0.8.0-alpha40
  • Loading branch information
tomato42 committed Jan 22, 2021
2 parents 015277a + 5c251eb commit ba2b058
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion README.md
@@ -1,4 +1,4 @@
tlslite-ng version 0.8.0-alpha39 (2020-12-19)
tlslite-ng version 0.8.0-alpha40 (2021-01-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 @@ -678,6 +678,12 @@ may not work with all asyncore.dispatcher subclasses.
* small optimisations to PRF methods, speeds to handshake
* support for MD5 signatures in X.509 certificates (Jean-Romain Garnier)
* add support for Brainpool curves in TLS 1.2 and earlier (pytz)
* fix wrong error message in AES implementation (Bernt Røskar Brenna)
* migrate to Github Action for CI
* fix API break caused by the workaround for Bleichenbacher; RSA keys generated
in-memory with m2crypto wouldn't work for decryption/encryption
* handle too short RSA ciphertexts for the key size consistently between
backends


0.7.0 - 2017-07-31
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -52,7 +52,7 @@

# General information about the project.
project = u'tlslite-ng'
copyright = u'2020, Hubert Kario'
copyright = u'2021, 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-alpha39'
release = u'0.8.0-alpha40'

# 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
Expand Up @@ -11,7 +11,7 @@
README = f.read()

setup(name="tlslite-ng",
version="0.8.0-alpha39",
version="0.8.0-alpha40",
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
@@ -1,7 +1,7 @@
# Author: Trevor Perrin
# See the LICENSE file for legal information regarding use of this file.

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

0 comments on commit ba2b058

Please sign in to comment.