summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcos Pinto <markybob@dipconsultants.com>2007-09-09 04:29:46 +0000
committerMarcos Pinto <markybob@dipconsultants.com>2007-09-09 04:29:46 +0000
commitcfe6f6b0f9973e553bf7507e482aa516e20827bd (patch)
tree54d429bf68f2506e2bf43dc72542c778aaf64be1
parentf6c15e09dece3b1871401f18bc3aa424bcb5036e (diff)
downloaddeluge-cfe6f6b0f9973e553bf7507e482aa516e20827bd.tar.gz
deluge-cfe6f6b0f9973e553bf7507e482aa516e20827bd.tar.bz2
deluge-cfe6f6b0f9973e553bf7507e482aa516e20827bd.zip
update version number 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 4c77db894..84bd2e94e 100644
--- a/setup.py
+++ b/setup.py
@@ -28,7 +28,7 @@
NAME = "deluge"
FULLNAME = "Deluge BitTorrent Client"
-VERSION = "0.5.4.1.95"
+VERSION = "0.5.5"
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 4a649683a..52e9bb4b3 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.4.1.95"
+PROGRAM_VERSION = "0.5.5"
CLIENT_CODE = "DE"
CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))