From: Cameron Dale Date: Sat, 10 May 2008 06:53:05 +0000 (-0700) Subject: New changelog entry and versions for next release. X-Git-Url: https://git.mxchange.org/?p=quix0rs-apt-p2p.git;a=commitdiff_plain;h=648ac0a2827cc56476ec4bdc7259e417fc3058dd New changelog entry and versions for next release. --- diff --git a/apt_p2p/apt_p2p_conf.py b/apt_p2p/apt_p2p_conf.py index 09d598b..6b58c8f 100644 --- a/apt_p2p/apt_p2p_conf.py +++ b/apt_p2p/apt_p2p_conf.py @@ -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}') diff --git a/debian/changelog b/debian/changelog index c5cc094..7cc037c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 diff --git a/setup.py b/setup.py index 0fe378d..f5de560 100755 --- 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 = "", url = "http://www.camrdale.org/apt-p2p.html",