From 16477181d045538e334ba3ea73bb641e59ee7cfc Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Sun, 18 May 2008 22:03:25 +0000 Subject: [PATCH] Prep 0.5.9.1 release. --- ChangeLog | 2 +- setup.py | 2 +- src/common.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6bde1b325..a00ca0a2c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -Deluge 0.5.9.1 (xx May 2008) +Deluge 0.5.9.1 (19 May 2008) * Fix queue reordering on startup * Fix open folder * Fix advanced progress bar when only 1 piece in torrent diff --git a/setup.py b/setup.py index be06d1704..a47f553fb 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ NAME = "deluge" FULLNAME = "Deluge BitTorrent Client" -VERSION = "0.5.9.0" +VERSION = "0.5.9.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 dd8545c65..5a0ddf011 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.9.0" +PROGRAM_VERSION = "0.5.9.1" CLIENT_CODE = "DE" CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))