Skip to content

Commit

Permalink
Update version to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Nov 5, 2015
1 parent 58d6da9 commit 6068b82
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```
tlslite-ng version 0.5.0 2015-10-10
tlslite-ng version 0.5.1 2015-11-05
Hubert Kario <hkario at redhat.com>
https://github.com/tomato42/tlslite-ng/
```
Expand Down Expand Up @@ -55,6 +55,8 @@ 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
details.

Currently it is distributed under Gnu LGPLv2 license.

Thanks to Edward Loper for Epydoc, which generated the API docs.

3 Installation
Expand All @@ -63,7 +65,7 @@ Thanks to Edward Loper for Epydoc, which generated the API docs.
Requirements:

* Python 2.6 or higher is required.
* Python 3 is supported.
* Python 3.2 or higher is supported.

Options:

Expand Down Expand Up @@ -519,6 +521,12 @@ encrypt-then-MAC mode for CBC ciphers.
12 History
===========
0.5.1 - 2015-11-05
- fix SRP_SHA_RSA ciphersuites in TLSv1.2 (for real this time)
- minor enchancements in test scripts
- NOTE: KeyExchange class is not part of stable API yet (it will be moved to
different module later)!
0.5.0 - 10/10/2015
- fix generators in AsyncStateMachine to work on Python3 (Theron Lewis)
- fix CVE-2015-3220 - remote DoS caused by incorrect malformed packet handling
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


setup(name="tlslite-ng",
version="0.5.0",
version="0.5.1",
author="Hubert Kario",
author_email="hkario@redhat.com",
url="https://github.com/tomato42/tlslite-ng",
Expand Down
2 changes: 1 addition & 1 deletion tlslite/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
Then use the L{tlslite.TLSConnection.TLSConnection} class with a socket.
(Or, use one of the integration classes in L{tlslite.integration}).
@version: 0.5.0
@version: 0.5.1
"""

from tlslite.api import *
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.5.0"
__version__ = "0.5.1"
from .constants import AlertLevel, AlertDescription, Fault
from .errors import *
from .checker import Checker
Expand Down

0 comments on commit 6068b82

Please sign in to comment.