diff --git a/ChangeLog b/ChangeLog
index 6f77eb6d3c8947d7b2eee7a6ad478b75937fcc2f..ed089968b123f80edc5a0a02de510c30c54315a8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-Gajim 0.13 (XX November 2009)
+Gajim 0.13 (24 November 2009)
 
   * Improve gtkspell (fix memleak)
   * BOSH connection
diff --git a/configure.ac b/configure.ac
index e67c39b838519284837af1a8956b44ad45e5c2d4..4acfaf31aef51fc32badc51c8377070283368a9e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 AC_INIT([Gajim - A Jabber Instant Messager],
-		[0.12.5.90-rc5],[http://trac.gajim.org/],[gajim])
+		[0.13],[http://trac.gajim.org/],[gajim])
 AC_PREREQ([2.59])
 
 AC_CONFIG_HEADER(config.h)
diff --git a/gajim.nsi b/gajim.nsi
index c31d3b7d0f5de4a7e43a1e21c02912410cbf0c1a..8b4e16deb82c34b707d24df12fe31e3aa601d103 100644
--- a/gajim.nsi
+++ b/gajim.nsi
@@ -189,7 +189,7 @@ Section "Gajim" SecGajim
 	WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayName" "Gajim"
 	WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "UninstallString" "$INSTDIR\Uninstall.exe"
 	WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayIcon" "$INSTDIR\bin\Gajim.exe"
-	WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.13-rc5"
+	WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.13"
 	WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "URLInfoAbout" "http://www.gajim.org/"
 	WriteUninstaller "$INSTDIR\Uninstall.exe"
 
diff --git a/setup_win32.py b/setup_win32.py
index 3be40f9135b1a15551af3306e1abfea78bc4af89..0fdcbd45b29066a0f3a0b025dda9864e9209baa7 100644
--- a/setup_win32.py
+++ b/setup_win32.py
@@ -72,7 +72,7 @@ opts = {
 
 setup(
     name = 'Gajim',
-    version = '0.13-rc5',
+    version = '0.13',
     description = 'A full featured Jabber client',
     author = 'Gajim Development Team',
     url = 'http://www.gajim.org/',
diff --git a/src/common/defs.py b/src/common/defs.py
index b87648364436982341543a65af3f6c84e3d3c329..1876fb2054c4a4dd79780a533f756460d3512f13 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -27,7 +27,7 @@ docdir = '../'
 datadir = '../'
 localedir = '../po'
 
-version = '0.12.5.90-rc5'
+version = '0.13'
 
 import sys, os.path
 for base in ('.', 'common'):