Skip to content

Commit 98c302d

Browse files
committed
release version 0.5.0-beta2
1 parent 6fed31d commit 98c302d

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

setup.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@
66
from distutils.core import setup
77

88
setup(name="tlslite-ng",
9-
version="0.5.0-alpha3",
9+
version="0.5.0-beta2",
1010
author="Hubert Kario",
1111
author_email="hkario@redhat.com",
1212
url="https://github.com/tomato42/tlslite-ng",
1313
description="tlslite implements SSL and TLS.",
14-
license="public domain and BSD",
14+
license="LGPLv2",
1515
scripts=["scripts/tls.py", "scripts/tlsdb.py"],
16-
packages=["tlslite", "tlslite.utils", "tlslite.integration"],)
16+
packages=["tlslite", "tlslite.utils", "tlslite.integration"],
17+
package_data={
18+
'package1': ['LICENSE', 'README.md']},
19+
)

tlslite/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Then use the L{tlslite.TLSConnection.TLSConnection} class with a socket.
2222
(Or, use one of the integration classes in L{tlslite.integration}).
2323
24-
@version: 0.5.0-alpha3
24+
@version: 0.5.0-beta2
2525
"""
2626

2727
from tlslite.api import *

tlslite/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Author: Trevor Perrin
22
# See the LICENSE file for legal information regarding use of this file.
33

4-
__version__ = "0.5.0-alpha3"
4+
__version__ = "0.5.0-beta2"
55
from .constants import AlertLevel, AlertDescription, Fault
66
from .errors import *
77
from .checker import Checker

0 commit comments

Comments
 (0)