Skip to content

Commit

Permalink
release version 0.5.0-beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Jul 23, 2015
1 parent 6fed31d commit 98c302d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@
from distutils.core import setup

setup(name="tlslite-ng",
version="0.5.0-alpha3",
version="0.5.0-beta2",
author="Hubert Kario",
author_email="hkario@redhat.com",
url="https://github.com/tomato42/tlslite-ng",
description="tlslite implements SSL and TLS.",
license="public domain and BSD",
license="LGPLv2",
scripts=["scripts/tls.py", "scripts/tlsdb.py"],
packages=["tlslite", "tlslite.utils", "tlslite.integration"],)
packages=["tlslite", "tlslite.utils", "tlslite.integration"],
package_data={
'package1': ['LICENSE', 'README.md']},
)
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-alpha3
@version: 0.5.0-beta2
"""

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

0 comments on commit 98c302d

Please sign in to comment.