From 42f4d55db20e35fa350e5799b796796c10e1eaf6 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Mon, 31 Dec 2007 10:43:37 +0000 Subject: [PATCH] tweak version --- ChangeLog | 4 ++++ setup.py | 2 +- src/common.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 94b8afaee..fc018f87a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Deluge 0.5.8 (29 December 2007) + * Fix handling of corrupt torrent files + * Fix having two instances of Deluge running on Ubuntu + Deluge 0.5.8RC2 (25 December 2007) * Change add torrent to ctrl+n * Change notification plugin to not show the file list, but only the torrent diff --git a/setup.py b/setup.py index f8b58c8e2..043706d02 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ NAME = "deluge" FULLNAME = "Deluge BitTorrent Client" -VERSION = "0.5.7.98" +VERSION = "0.5.8" 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 a02801c87..fd2caf1bc 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.98" +PROGRAM_VERSION = "0.5.8" CLIENT_CODE = "DE" CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))