]> git.mxchange.org Git - quix0rs-apt-p2p.git/commitdiff
Update the version numbers and changelog for new release.
authorCameron Dale <camrdale@gmail.com>
Sat, 3 May 2008 17:27:35 +0000 (10:27 -0700)
committerCameron Dale <camrdale@gmail.com>
Sat, 3 May 2008 17:27:35 +0000 (10:27 -0700)
apt_p2p/apt_p2p_conf.py
debian/changelog
setup.py

index 169a60b4882309250af71936ec225e030970b07a..0496809e524a906544409eddf8f6f6b61413dab7 100644 (file)
@@ -23,7 +23,7 @@ class ConfigError(Exception):
     def __str__(self):
         return repr(self.message)
 
-version = versions.Version('apt-p2p', 0, 1, 0)
+version = versions.Version('apt-p2p', 0, 1, 1)
 
 # Set the home parameter
 home = os.path.expandvars('${HOME}')
index efc3e286ad777cbb02d93cb8120aa2f29187b2f4..3b47b2d7fc557ab1e07d357e4227d300db7fa65f 100644 (file)
@@ -1,3 +1,17 @@
+apt-p2p (0.1.1) unstable; urgency=low
+
+  * Fix: no files were added to the DHT due to missing hashing results.
+  * Lower the timeout to 9 sec to reduce delays.
+  * Be more careful about which nodes get added to the routing table
+    - Only add nodes to the routing table that have responded to a request.
+    - Don't try and add ourself to the routing table during an action.
+    - Don't add local IP addresses to the routing table (with config
+      option to override).
+    - Fix the broken local IP regexes.
+  * Don't log KRPC errors for receiving an invalid store_value token.
+
+ -- Cameron Dale <camrdale@gmail.com>  Sat, 03 May 2008 10:24:35 -0700
+
 apt-p2p (0.1.0) unstable; urgency=low
 
   * Initial release.
index bf8ef6a287e4b1e15f521048ea367fb27146f67b..3103e3ae3369fab07558567d99ded0cffe8cc4e3 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ from distutils.core import setup
 
 setup(
     name = "apt-p2p",
-    version = "0.1.0",
+    version = "0.1.1",
     author = "Cameron Dale",
     author_email = "<camrdale@gmail.com>",
     url = "http://www.camrdale.org/apt-p2p.html",