Skip to content

Commit 8eae042

Browse files
author
Trevor
committed
Increment version number (0.4.1)
1 parent ec3c2ea commit 8eae042

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
tlslite version 0.4.0 Feb 11 2012
2+
tlslite version 0.4.1 May 22 2012
33
Trevor Perrin <tlslite at trevp.net>
44
http://trevp.net/tlslite/
55
============================================================================
@@ -451,11 +451,11 @@ at your own risk.
451451

452452
12 History
453453
===========
454-
0.4.1 - ?
454+
0.4.1 - 5/22/2012
455455
- Fixed RSA padding bugs (w/help from John Randolph)
456-
- Updated TACK
456+
- Updated TACK (compatible with tackpy 0.9.7)
457457
- Added SNI
458-
- Added NPN (Sam Rushing/Google)
458+
- Added NPN server support (Sam Rushing/Google)
459459
- Added AnonDH (Dimitris Moraitis)
460460
- Added X509CertChain.parsePemList
461461
- Improved XML-RPC (Kees Bos)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from distutils.core import setup
77

88
setup(name="tlslite",
9-
version="0.4.0",
9+
version="0.4.1",
1010
author="Trevor Perrin",
1111
author_email="[email protected]",
1212
url="http://trevp.net/tlslite/",

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.4.0
24+
@version: 0.4.1
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.4.0"
4+
__version__ = "0.4.1"
55
from .constants import AlertLevel, AlertDescription, Fault
66
from .errors import *
77
from .checker import Checker

0 commit comments

Comments
 (0)