diff --git a/debian/changelog b/debian/changelog
index 9688e4180e9e0ebbef225f057e9652aed658a840..a8c1e3b2694da5d580a674ad49ef56503374a27c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+monkeysign (0.6) unstable; urgency=low
+
+  * fix warnings in the graphical interface
+  * make qr-code detection be case-insensitive
+  * fix syntax error
+  * follow executable renames properly
+
+ -- Antoine Beaupré <anarcat@debian.org>  Sat, 06 Oct 2012 16:08:48 +0200
+
 monkeysign (0.5) unstable; urgency=low
 
   * non-exportable signatures (--local) support
diff --git a/gpg.py b/gpg.py
index 5183bfafe0289694e36c9b6bb102139eec926fba..9e70470a95d73715dfcab6d24555828a09396a2d 100644
--- a/gpg.py
+++ b/gpg.py
@@ -61,7 +61,7 @@ However, the implementation here has:
  2. a cleaner API
 """
 
-__version__ = '0.5'
+__version__ = '0.6'
 
 import os, tempfile, shutil, subprocess, re