Skip to content

Commit

Permalink
release 0.8.0-beta3
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Aug 30, 2024
1 parent b9bcf7d commit 7e3ff6a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tlslite-ng version 0.8.0-beta2 (2024-08-22)
tlslite-ng version 0.8.0-beta3 (2024-08-30)

[![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 @@ -34,7 +34,7 @@ API documentation is available in the `docs/_build/html` directory of the PyPI
package
or can be automatically generated using `make docs` with Sphinx installed.

If you have questions or feedback, feel free to contact me (Hubert Kario
If you have questions or feedback, feel free to contact me (Alicja Kario
<hkario at redhat.com>). Issues and pull
requests can also be submitted through github issue tracking system, at the
project's main page at [GitHub](https://github.com/tlsfuzzer/tlslite-ng), see
Expand Down Expand Up @@ -77,11 +77,11 @@ Implemented TLS features include:
============================

tlslite-ng is a fork of TLS Lite, it is currently maintained and developed by
Hubert Kario. TLS Lite was written (mostly) by Trevor
Alicja Kario. TLS Lite was written (mostly) by Trevor
Perrin. It includes code from Bram Cohen, Google, Kees Bos, Sam Rushing,
Dimitris Moraitis, Marcelo Fernandez, Martin von Loewis, Dave Baggett, Yngve
N. Pettersen (ported by Paul Sokolovsky), Mirko Dziadzka, David Benjamin,
Sidney Markowitz, and Hubert Kario.
Sidney Markowitz, and Alicja Kario.

Original code in TLS Lite has either been dedicated to the public domain by its
authors, or placed under a BSD-style license. See the LICENSE file for
Expand Down Expand Up @@ -707,6 +707,11 @@ TLSAsyncioDispatcherMixIn.py.
* fix sending of session ticket extension from the server without
a ticket (George Pantelakis)
* add Brainpool IDs for TLS 1.3 from RFC 8734
* add support for compress_certificate extension from RFC 8879
(George Pantelakis)
* Fix int_to_bytes and numberToByteArray encoding of 0 with length not
specified, and thus also ClientKeyExchange handling for DHE with missing
key share

0.7.0 - 2017-07-31

Expand Down Expand Up @@ -835,7 +840,7 @@ TLSAsyncioDispatcherMixIn.py.
* Don't offer SSLv3 by default (e.g. POODLE)
* Fixed bug with `PyCrypto_RSA` integration
* Fixed harmless bug that added non-prime into sieves list
* Added "make test" and "make test-dev" targets (Hubert Kario)
* Added "make test" and "make test-dev" targets (Alicja Kario)

0.4.5 - 3/20/2013

Expand Down
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
# -- Project information -----------------------------------------------------

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

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
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-beta2'
release = u'0.8.0-beta3'


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -269,7 +269,7 @@
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'tlslite-ng.tex', u'tlslite-ng Documentation',
u'Hubert Kario', 'manual'),
u'Alicja Kario', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
README = f.read()

setup(name="tlslite-ng",
version="0.8.0-beta2",
author="Hubert Kario",
version="0.8.0-beta3",
author="Alicja Kario",
author_email="[email protected]",
url="https://github.com/tlsfuzzer/tlslite-ng",
description="Pure python implementation of SSL and TLS.",
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-beta2"
__version__ = "0.8.0-beta3"
# 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 7e3ff6a

Please sign in to comment.