Skip to content

Commit

Permalink
Release version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Oct 10, 2015
1 parent 694e0f1 commit 741f9f8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
5 changes: 3 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-beta6 2015-09-09
tlslite-ng version 0.5.0 2015-10-10
Hubert Kario <hkario at redhat.com>
https://github.com/tomato42/tlslite-ng/
```
Expand Down Expand Up @@ -519,7 +519,8 @@ encrypt-then-MAC mode for CBC ciphers.
12 History
===========

0.5.0-beta6 - 09/09/2015
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
- removed RC4 from ciphers supported by default
- add supported_groups, supported_point_formats, signature_algorithms and
Expand Down
4 changes: 2 additions & 2 deletions 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-beta6",
version="0.5.0",
author="Hubert Kario",
author_email="hkario@redhat.com",
url="https://github.com/tomato42/tlslite-ng",
Expand All @@ -22,7 +22,7 @@
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
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-beta6
@version: 0.5.0
"""

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

0 comments on commit 741f9f8

Please sign in to comment.