summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael P. Soulier <msoulier@digitaltorque.ca>2011-07-24 19:10:34 -0400
committerMichael P. Soulier <msoulier@digitaltorque.ca>2011-07-24 19:10:34 -0400
commita5a42a3cc4949538fb83b55822d2df7398eb0771 (patch)
treeb113083111d881ce2a3496149ff1f0c3acf7a702
parent04aaa2ef9ff6a09d39d67a1ee42b359e244afd24 (diff)
downloadtftpy-0.6.0.tar.gz
Updating metadata for 0.6.0 release.0.6.0
-rw-r--r--ChangeLog26
-rw-r--r--README5
-rw-r--r--setup.py2
3 files changed, 32 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 788ecb2..4e63f7d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,31 @@
+2011-07-24 Michael P. Soulier
+ 04aaa2e: Fixing issue #3, expanding unit tests.
+
+2011-07-23 Michael P. Soulier
+ 40977c6: Fixing some pyflakes complaints
+ add4440: Fixes issue #23, breaking up TftpStates into TftpStates and TftpContexts.
+ 949c998: Fixing issue #9, removing blksize option from client if not supplied.
+ a43773e: Fixing issue #16 on github, server failing to use timeout time in checkTimeout() method.
+ 1e74abf: Adding retries on timeouts, still have to exhaustively test. Should close issue #21 on github.
+
+2011-06-02 Michael P. Soulier
+ 6fd9391: Fixing a file descriptor leak. Closes issue 22.
+ f6442eb: Adding a server download state test to the unit tests.
+
+2010-10-18 Kenny Millington
+ a6cff4f: Fix exceptions propagating out of TftpServer.listen()
+ 71d827d: Allow dyn_file_func to trigger a FileNotFound error.
+
+2010-10-13 Michael P. Soulier
+ 4396124: Forcing decode mode to lower case, fixes bug 17.
+
+2010-07-20 Michael P. Soulier
+ 45185ed: Fixing setNextBlock to roll over at 2**16 - 1 instead of 2**16, which was causing problems when uploading large files.
+
2010-07-14 Michael P. Soulier
+ e1b1be2: Updating README for 0.5.1
+ 4f61f7f: Updated changelog for 0.5.1.
e35cd2d: Added simple doc examples and install info.
2010-07-12 Michael P. Soulier
diff --git a/README b/README
index 9547f48..a7e576f 100644
--- a/README
+++ b/README
@@ -1,5 +1,10 @@
Copyright, Michael P. Soulier, 2010.
+About Release 0.6.0:
+====================
+Maintenance update to fix several reported issues, including proper
+retransmits on timeouts, and further expansion of unit tests.
+
About Release 0.5.1:
====================
Maintenance update to fix a bug in the server, overhaul the documentation for
diff --git a/setup.py b/setup.py
index 974ada1..a3b8b67 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
from distutils.core import setup
setup(name='tftpy',
- version='0.5.1',
+ version='0.6.0',
description='Python TFTP library',
author='Michael P. Soulier',
author_email='msoulier@digitaltorque.ca',