summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcos Pinto <markybob@dipconsultants.com>2007-10-22 21:13:12 +0000
committerMarcos Pinto <markybob@dipconsultants.com>2007-10-22 21:13:12 +0000
commit5b762efa86905f9e2a45777bf4204d5a9b5a723e (patch)
treea87e6d668dd288205396fd8eef94fc6de2230f04
parent117aa753461cf3048eb524782419ab976d29eba0 (diff)
downloaddeluge-5b762efa86905f9e2a45777bf4204d5a9b5a723e.tar.gz
deluge-5b762efa86905f9e2a45777bf4204d5a9b5a723e.tar.bz2
deluge-5b762efa86905f9e2a45777bf4204d5a9b5a723e.zip
set version numbers for release
-rw-r--r--setup.py2
-rw-r--r--src/common.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 9e875f4f0..f9c791c94 100644
--- a/setup.py
+++ b/setup.py
@@ -28,7 +28,7 @@
NAME = "deluge"
FULLNAME = "Deluge BitTorrent Client"
-VERSION = "0.5.5.95"
+VERSION = "0.5.6"
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 bittorrent client written in PyGTK"
diff --git a/src/common.py b/src/common.py
index 3e4f15ffd..ea2a6d58a 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.5.95"
+PROGRAM_VERSION = "0.5.6"
CLIENT_CODE = "DE"
CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))