Skip to content

Commit

Permalink
release 0.7.0-alpha8
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Jul 19, 2017
1 parent 1b9f7d3 commit 4646646
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```
tlslite-ng version 0.7.0-alpha7 2017-07-14
tlslite-ng version 0.7.0-alpha8 2017-07-19
Hubert Kario <hkario at redhat.com>
https://github.com/tomato42/tlslite-ng/
```
Expand Down Expand Up @@ -587,6 +587,10 @@ encrypt-then-MAC mode for CBC ciphers.

0.7.0 - in-dev

* enable and add missing definitions of TLS_ECDHE_RSA_WITH_RC4_128_SHA and
TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
* add definitions of some ECDHE_ECDSA, ECDH_ECDSA and ECDH_RSA ciphersuites,
they remain unsupported, but IDs are useful for other projects
* basic support for RSA-PSS (Tomas Foukal)
* support for RSA-PSS in TLSv1.2
* better documentation for Parser and ASN1Parser
Expand All @@ -606,7 +610,7 @@ encrypt-then-MAC mode for CBC ciphers.
follow RFC recommendations with regards to session resumption, reject
non-empty
* Allow negotiation of ECDHE ciphersuites even if client doesn't advertise
any curves, assume P-256 curve support.
any curves, default to P-256 curve support, support configuring it.

0.6.0 - 2016-09-07

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
README = f.read()

setup(name="tlslite-ng",
version="0.7.0-alpha7",
version="0.7.0-alpha8",
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.7.0-alpha7
@version: 0.7.0-alpha8
"""

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

0 comments on commit 4646646

Please sign in to comment.