diff --git a/debian/changelog b/debian/changelog
index 537e6abef34cc45aac8b2f0a2c11663708190e37..5b32b0294696602ef077dfcfe01fe9d10ec6317a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,18 @@
+monkeysign (0.2) unstable; urgency=low
+
+  * only load information from private keys when doing key detection
+  * add debugging in key choosing algorithm
+  * import private keyring even in dry-run
+  * properly import re, fixing a crash
+  * add usage for monkeysign-scan
+  * fixup modules list so that the package actually works
+  * make this not crash completely if there's no video
+  * improve short description so that it matches 'key signing'
+  * fix dependencies
+  * fix typo, noticed by micah
+
+ -- Antoine Beaupré <anarcat@debian.org>  Sun, 22 Jul 2012 13:38:00 -0400
+
 monkeysign (0.1) unstable; urgency=low
 
   * Initial Release.
diff --git a/gpg.py b/gpg.py
index e15eb05890a1b8772bddd36ee8adbc1a868b97c0..1b125560ae03768c88bfc0026bcfa436d9937097 100644
--- a/gpg.py
+++ b/gpg.py
@@ -61,7 +61,7 @@ However, the implementation here has:
  2. a cleaner API
 """
 
-__version__ = '0.1'
+__version__ = '0.2'
 
 import os, tempfile, shutil, subprocess, re