summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormsoulier <msoulier@63283fd4-ec1e-0410-9879-cb7f675518da>2008-05-28 23:57:55 +0000
committermsoulier <msoulier@63283fd4-ec1e-0410-9879-cb7f675518da>2008-05-28 23:57:55 +0000
commit936e4df5b642aaf7f1a53a5f92acd5d686efed6b (patch)
treeb9d8e830aebbbad9a555efd5031cdd6c2f66f224
parentcaff30dda64b00674f9d574d085ce1992e5ac8d1 (diff)
downloadtftpy-936e4df5b642aaf7f1a53a5f92acd5d686efed6b.tar.gz
Updated for v0.4.5 release.
git-svn-id: https://tftpy.svn.sourceforge.net/svnroot/tftpy/trunk@84 63283fd4-ec1e-0410-9879-cb7f675518da
-rw-r--r--ChangeLog28
-rw-r--r--README13
-rw-r--r--setup.py4
3 files changed, 41 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index cc9046e..e75032d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,31 @@
+2008-05-20 02:20 msoulier
+
+ * tftpy/TftpServer.py: Fix for [ 1932310 ] security check always
+ fail for windows.
+
+2008-05-20 02:12 msoulier
+
+ * tftpy/TftpClient.py: Fixed division by zero error in rate
+ calculations in download function of
+ client. Thanks to Stefaan Vanheesbeke for the report.
+
+2008-05-20 02:00 msoulier
+
+ * tftpy/TftpServer.py: Fix for bug [ 1932330 ] binary downloads
+ fail in Windows.
+
+2008-01-31 02:27 msoulier
+
+ * README: Updated README.
+
+2008-01-31 02:21 msoulier
+
+ * ChangeLog: Updated ChangeLog
+
+2008-01-31 02:21 msoulier
+
+ * setup.py: Updating version to 0.4.4
+
2007-12-16 15:48 msoulier
* tftpy/TftpServer.py: Fixing 1851544 - server not tolerant of
diff --git a/README b/README
index be1e169..4ad01f5 100644
--- a/README
+++ b/README
@@ -1,5 +1,9 @@
Copyright, Michael P. Soulier, 2006.
+About Release 0.4.5:
+====================
+Bugfix release for compatability issues on Win32, among other small issues.
+
About Release 0.4.4:
====================
Bugfix release for poor tolerance of unsupported options in the server.
@@ -57,7 +61,7 @@ easy inclusion in a UI for populating progress indicators. It supports RFCs
Dependencies:
-------------
-This library was developed against Python 2.3.
+This library was developed against Python 2.3+.
Trifles:
--------
@@ -75,7 +79,12 @@ Limitations:
- Only 'octet' mode is supported
- The only option supported is blksize
+Future:
+-------
+- Upload support
+- netascii support
+- More complete test harness
+
Author:
=======
-
Michael P. Soulier <msoulier@digitaltorque.ca>
diff --git a/setup.py b/setup.py
index d7577fb..eee568a 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
from distutils.core import setup
setup(name='tftpy',
- version='0.4.4',
+ version='0.4.5',
description='Python TFTP library',
author='Michael P. Soulier',
author_email='msoulier@digitaltorque.ca',
@@ -15,7 +15,7 @@ setup(name='tftpy',
'License :: OSI Approved :: CNRI Python License',
'Topic :: Networking :: TFTP',
'Intended Audience :: Developers',
- 'Operating System :: POSIX',
+ 'Operating System :: Any',
'Environment :: Console',
]
)