New changelog entry and versions for next release.
authorCameron Dale <camrdale@gmail.com>
Sat, 10 May 2008 06:53:05 +0000 (23:53 -0700)
committerCameron Dale <camrdale@gmail.com>
Sat, 10 May 2008 06:53:05 +0000 (23:53 -0700)
apt_p2p/apt_p2p_conf.py
debian/changelog
setup.py

index 09d598b4e84b0504c9cbf9ac0a6ba99cd62a5983..6b58c8fe68a37206a5f18d1ee1fe6126b2281192 100644 (file)
@@ -23,7 +23,7 @@ class ConfigError(Exception):
     def __str__(self):
         return repr(self.message)
 
-version = versions.Version('apt-p2p', 0, 1, 2)
+version = versions.Version('apt-p2p', 0, 1, 3)
 
 # Set the home parameter
 home = os.path.expandvars('${HOME}')
index c5cc0944a595f300899f30045871c9686ca7d9b4..7cc037ce6b525dc19c3f858a299f582190518cc3 100644 (file)
@@ -1,3 +1,23 @@
+apt-p2p (0.1.3) unstable; urgency=low
+
+  * Speed up downloading from peers
+    - Set a new peer's ranking values so they don't get an unfair
+      advantage.
+    - Reduce the HTTP connection timeout to 10s.
+    - Drop peers after a limited number of errors.
+  * Speed up the DHT requests when nodes fail
+    - Schedule a re-ping message after adding a new node.
+    - When a node fails, schedule a future ping to check again.
+    - Send periodic finds to nodes that are stale.
+    - Increase the stored value redundancy to 6.
+    - Increase the concurrency of DHT requests to 8.
+    - Add early termination and ignoring slow responses to
+      recursive DHT actions when timeouts occur.
+  * Remove the debconf note about port forwarding (Closes: #479492)
+    - Add a NEWS entry for port forwarding
+
+ -- Cameron Dale <camrdale@gmail.com>  Fri, 09 May 2008 23:43:13 -0700
+
 apt-p2p (0.1.2) unstable; urgency=low
 
   * Fixed a bug in the HTTP downloader that caused errors with some
index 0fe378db69a43fb1380ae9ccdd4e0f78a3beb312..f5de560528e02e28d9fac9ff5475b3b98c89a7df 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ from distutils.core import setup
 
 setup(
     name = "apt-p2p",
-    version = "0.1.2",
+    version = "0.1.3",
     author = "Cameron Dale",
     author_email = "<camrdale@gmail.com>",
     url = "http://www.camrdale.org/apt-p2p.html",