diff --git a/ChangeLog b/ChangeLog
index d3679a949031649d5f5ce30368d8a0df08035869..f40dbd8ee1fe63025fa11fdf674da99ad4a00665 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-Gajim 0.14 (XX)
+Gajim 0.14 (02 September 2010)
 
   * Jingle audio / video chat
   * Improve Startup time
diff --git a/configure.ac b/configure.ac
index df2a0c464f26c9e6267b8ef76f78f43bce63fcca..dd49d5e9272f5ce33c7485fac22c33a4ca11c17c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 AC_INIT([Gajim - A Jabber Instant Messager],
-		[0.13.90.1],[http://trac.gajim.org/],[gajim])
+		[0.14],[http://trac.gajim.org/],[gajim])
 AC_PREREQ([2.59])
 
 AC_CONFIG_HEADER(config.h)
diff --git a/debian/changelog b/debian/changelog
index 3b3b541928291a76388f59c387cc1a1cce293ad1..9fd2f43045c657d05fe56e7f1ebbbfcefa193ec0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,14 @@
-gajim (0.13.90-1) unstable; urgency=low
+gajim (0.14-1) unstable; urgency=low
 
   * New upstream release.
-
- -- Yann Leboulanger <asterix@lagaule.org>  Sat, 24 Jul 2010 10:25:26 +0200
+  * Correctly sanitize menuentries in chat window action context menu.
+    Closes: #574839
+  * Fix traceback when closing file request dialog. Closes: #587186
+  * Recommand python-openssl >= 0.9. Closes: #594772
+  * Improve a string. Closes: #553527
+  * Fix canceling file transfer. Closes: #587679
+
+ -- Yann Leboulanger <asterix@lagaule.org>  Thu, 02 Sep 2010 19:25:26 +0200
 
 gajim (0.13.4-1) unstable; urgency=low
 
diff --git a/debian/control b/debian/control
index bb0a6d0c217bfe7615f4b32d1bf054621bdc5ffc..6ea68095b512596ce3dcd71623a54f7e1c74232b 100644
--- a/debian/control
+++ b/debian/control
@@ -14,7 +14,7 @@ Package: gajim
 Architecture: all
 XB-Python-Version: ${python:Versions}
 Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}, python-support (>= 0.7.1), python-glade2 (>= 2.12.0), python-gtk2 (>= 2.12.0), dnsutils
-Recommends: dbus, python-dbus, notification-daemon, python-gnupginterface, python-openssl, python-crypto
+Recommends: dbus, python-dbus, notification-daemon, python-gnupginterface, python-openssl (>= 0.9), python-crypto
 Suggests: python-gconf, python-gnome2, nautilus-sendto, avahi-daemon, python-avahi, network-manager, libgtkspell0, aspell-en, python-gnomekeyring, gnome-keyring, python-sexy, python-kerberos (>= 1.1), texlive-latex-base, dvipng, python-farsight, gstreamer0.10-plugins-ugly
 Description: Jabber client written in PyGTK
  Gajim is a Jabber client. It has a tabbed user interface with normal chats,
diff --git a/src/common/defs.py b/src/common/defs.py
index 82eab9c6a514e8e1d79577d60c12dbe1a6d74115..72007d3ce1f0678d3b7b9ee6ee9ee55baf92bade 100644
--- a/src/common/defs.py
+++ b/src/common/defs.py
@@ -27,7 +27,7 @@ docdir = '../'
 basedir   = '../'
 localedir = '../po'
 
-version = '0.13.90.1'
+version = '0.14'
 
 import sys, os.path
 for base in ('.', 'common'):