diff --git a/ChangeLog b/ChangeLog
index ed089968b123f80edc5a0a02de510c30c54315a8..d11d730fc146a87aff0600fbb0a47f3dccfe83cf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Gajim 0.13.1 ((28 November 2009)
+
+  * Fix a bug when no account exists and bonjour is not available
+  * Fix a bug when opening advanced option in MUC
+  * Fix a bug when using non-BOSH proxies
+
 Gajim 0.13 (24 November 2009)
 
   * Improve gtkspell (fix memleak)
diff --git a/configure.ac b/configure.ac
index 4acfaf31aef51fc32badc51c8377070283368a9e..5251138a6173c81e384257028cb810f0f8e8ebe0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 AC_INIT([Gajim - A Jabber Instant Messager],
-		[0.13],[http://trac.gajim.org/],[gajim])
+		[0.13.1],[http://trac.gajim.org/],[gajim])
 AC_PREREQ([2.59])
 
 AC_CONFIG_HEADER(config.h)
diff --git a/gajim.nsi b/gajim.nsi
index 8b4e16deb82c34b707d24df12fe31e3aa601d103..e2ee188cba2a4d691ce61f84fe0d6b1d63dbd1e2 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"
+	WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.13.1"
 	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 0fdcbd45b29066a0f3a0b025dda9864e9209baa7..14d9a386d2c27897d16ce40c930f53c4967d6167 100644
--- a/setup_win32.py
+++ b/setup_win32.py
@@ -72,7 +72,7 @@ opts = {
 
 setup(
     name = 'Gajim',
-    version = '0.13',
+    version = '0.13.1',
     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 1876fb2054c4a4dd79780a533f756460d3512f13..aad0eeb0c4c2a4f0a9b21e5aed77baaebac3730b 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -27,7 +27,7 @@ docdir = '../'
 datadir = '../'
 localedir = '../po'
 
-version = '0.13'
+version = '0.13.1'
 
 import sys, os.path
 for base in ('.', 'common'):