diff --git a/ChangeLog b/ChangeLog
index ab1bfe59ac508b54bbe4e5e268e383240b65a86a..4f55bffb5bf3bb22e38b682e9cfc6596c493dfa9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,11 @@
-Gajim 0.13.2 ((14 January 2010)
+Gajim 0.13.3 (23 February 2010)
+
+  * Fix facebook xmpp server connection
+  * Fix copy / paste with Ctrl+C on non-latin keyboard
+  * Fix sending PEP information when connecting
+  * Fix parsing HTML messages that have ascii markup
+
+Gajim 0.13.2 (14 January 2010)
 
   * Fix some translations
   * Fix string comparison according to locales
@@ -7,7 +14,7 @@ Gajim 0.13.2 ((14 January 2010)
   * better SRV usage with libasyncns
   * copy emoticons when we copy / paste in conversations
 
-Gajim 0.13.1 ((28 November 2009)
+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
diff --git a/configure.ac b/configure.ac
index 56ebbceb79ca5ffa2005ae3f0e6af6e5a16d0773..d687ab7ba8172c101cc95586b05bf5356b9cff31 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 AC_INIT([Gajim - A Jabber Instant Messager],
-		[0.13.2],[http://trac.gajim.org/],[gajim])
+		[0.13.3],[http://trac.gajim.org/],[gajim])
 AC_PREREQ([2.59])
 
 AC_CONFIG_HEADER(config.h)
diff --git a/gajim.nsi b/gajim.nsi
index e2ee188cba2a4d691ce61f84fe0d6b1d63dbd1e2..c0ca095aaa198a697515d3d76f74961bcf81e86e 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.1"
+	WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gajim" "DisplayVersion" "0.13.3"
 	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 a8cda7a465aafe0349e29b99c7573d1424a08beb..beeecfd3cdfae8de5f68282a122ef331c3c37f44 100644
--- a/setup_win32.py
+++ b/setup_win32.py
@@ -72,7 +72,7 @@ opts = {
 
 setup(
     name = 'Gajim',
-    version = '0.13.2',
+    version = '0.13.3',
     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 a4d8b57f74e2a9433d77ab537466d8d975738632..38562bff071ccb358d21b2ba63f46d70dfab3ca7 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -27,7 +27,7 @@ docdir = '../'
 datadir = '../'
 localedir = '../po'
 
-version = '0.13.2'
+version = '0.13.3'
 
 import sys, os.path
 for base in ('.', 'common'):