Skip to content

Commit

Permalink
release 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Feb 9, 2018
1 parent 58bec4d commit 2207fb5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion README.md
@@ -1,5 +1,5 @@
```
tlslite-ng version 0.7.0 2017-07-31
tlslite-ng version 0.7.1 2018-02-09
Hubert Kario <hkario at redhat.com>
https://github.com/tomato42/tlslite-ng/
```
Expand Down Expand Up @@ -586,6 +586,10 @@ encrypt-then-MAC mode for CBC ciphers.
12 History
===========

0.7.1 - 2018-02-09

* fix support for M2Crypto on Python3

0.7.0 - 2017-07-31

* enable and add missing definitions of TLS_ECDHE_RSA_WITH_RC4_128_SHA and
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -51,7 +51,7 @@

# General information about the project.
project = u'tlslite-ng'
copyright = u'2017, Hubert Kario'
copyright = u'2018, Hubert Kario'
author = u'Hubert Kario'

# The version info for the project you're documenting, acts as replacement for
Expand All @@ -61,7 +61,7 @@
# The short X.Y version.
version = u'0.7'
# The full version, including alpha/beta/rc tags.
release = u'0.7.0'
release = u'0.7.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -11,7 +11,7 @@
README = f.read()

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

from tlslite.api import *
Expand Down
2 changes: 1 addition & 1 deletion tlslite/api.py
@@ -1,7 +1,7 @@
# Author: Trevor Perrin
# See the LICENSE file for legal information regarding use of this file.

__version__ = "0.7.0"
__version__ = "0.7.1"
from .constants import AlertLevel, AlertDescription, Fault
from .errors import *
from .checker import Checker
Expand Down

0 comments on commit 2207fb5

Please sign in to comment.