From 4037479119b4a995ea0f0697f3d016b430f8fcc2 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Sat, 1 Dec 2007 04:20:47 +0000 Subject: [PATCH] update changelogs and up trunk version --- ChangeLog | 7 ++++++- setup.py | 2 +- src/common.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 91b735e58..a914d3818 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,9 @@ -Deluge 0.5.7 (xx November 2007) +Deluge 0.5.7.1 (31 November 2007) + * Increase tracker timeout + * Fixed crash and corruption of persistent.state while adding a duplicate + torrent. Also caused yet another invalid handle error. + +Deluge 0.5.7 (26 November 2007) * Scrape support * Manual force-recheck * Add local peer discovery (aka local service discovery) diff --git a/setup.py b/setup.py index 14c9f0e8c..9d1c3d016 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ NAME = "deluge" FULLNAME = "Deluge BitTorrent Client" -VERSION = "0.5.7.01" +VERSION = "0.5.7.1" AUTHOR = "Zach Tibbitts, Alon Zakai, Marcos Pinto, Andrew Resch, Alex Dedul" EMAIL = "zach@collegegeek.org, kripkensteiner@gmail.com, marcospinto@dipconsultants.com, alonzakai@gmail.com, rotmer@gmail.com" DESCRIPTION = "A GTK BitTorrent client written in Python and C++" diff --git a/src/common.py b/src/common.py index 5117e785f..b41591357 100644 --- a/src/common.py +++ b/src/common.py @@ -32,7 +32,7 @@ import os import xdg.BaseDirectory PROGRAM_NAME = "Deluge" -PROGRAM_VERSION = "0.5.7.01" +PROGRAM_VERSION = "0.5.7.1" CLIENT_CODE = "DE" CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))