Skip to content

Commit 7e3ff6a

Browse files
committed
release 0.8.0-beta3
1 parent b9bcf7d commit 7e3ff6a

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tlslite-ng version 0.8.0-beta2 (2024-08-22)
1+
tlslite-ng version 0.8.0-beta3 (2024-08-30)
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/)
@@ -34,7 +34,7 @@ API documentation is available in the `docs/_build/html` directory of the PyPI
3434
package
3535
or can be automatically generated using `make docs` with Sphinx installed.
3636

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

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

8686
Original code in TLS Lite has either been dedicated to the public domain by its
8787
authors, or placed under a BSD-style license. See the LICENSE file for
@@ -707,6 +707,11 @@ TLSAsyncioDispatcherMixIn.py.
707707
* fix sending of session ticket extension from the server without
708708
a ticket (George Pantelakis)
709709
* add Brainpool IDs for TLS 1.3 from RFC 8734
710+
* add support for compress_certificate extension from RFC 8879
711+
(George Pantelakis)
712+
* Fix int_to_bytes and numberToByteArray encoding of 0 with length not
713+
specified, and thus also ClientKeyExchange handling for DHE with missing
714+
key share
710715
711716
0.7.0 - 2017-07-31
712717
@@ -835,7 +840,7 @@ TLSAsyncioDispatcherMixIn.py.
835840
* Don't offer SSLv3 by default (e.g. POODLE)
836841
* Fixed bug with `PyCrypto_RSA` integration
837842
* Fixed harmless bug that added non-prime into sieves list
838-
* Added "make test" and "make test-dev" targets (Hubert Kario)
843+
* Added "make test" and "make test-dev" targets (Alicja Kario)
839844
840845
0.4.5 - 3/20/2013
841846

docs/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
# -- Project information -----------------------------------------------------
2525

2626
project = u'tlslite-ng'
27-
copyright = u'2024, Hubert Kario'
28-
author = u'Hubert Kario'
27+
copyright = u'2024, Alicja Kario'
28+
author = u'Alicja Kario'
2929

3030
# The version info for the project you're documenting, acts as replacement for
3131
# |version| and |release|, also used in various other places throughout the
@@ -34,7 +34,7 @@
3434
# The short X.Y version.
3535
version = u'0.8'
3636
# The full version, including alpha/beta/rc tags.
37-
release = u'0.8.0-beta2'
37+
release = u'0.8.0-beta3'
3838

3939

4040
# -- General configuration ---------------------------------------------------
@@ -269,7 +269,7 @@
269269
# author, documentclass [howto, manual, or own class]).
270270
latex_documents = [
271271
(master_doc, 'tlslite-ng.tex', u'tlslite-ng Documentation',
272-
u'Hubert Kario', 'manual'),
272+
u'Alicja Kario', 'manual'),
273273
]
274274

275275
# The name of an image file (relative to this directory) to place at the top of

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
README = f.read()
1212

1313
setup(name="tlslite-ng",
14-
version="0.8.0-beta2",
15-
author="Hubert Kario",
14+
version="0.8.0-beta3",
15+
author="Alicja Kario",
1616
author_email="hkario@redhat.com",
1717
url="https://github.com/tlsfuzzer/tlslite-ng",
1818
description="Pure python implementation of SSL and TLS.",

tlslite/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# See the LICENSE file for legal information regarding use of this file.
66

7-
__version__ = "0.8.0-beta2"
7+
__version__ = "0.8.0-beta3"
88
# the whole module is about importing most commonly used methods, for use
99
# by other applications
1010
# pylint: disable=unused-import

0 commit comments

Comments
 (0)