diff --git a/data/com.github.jeremypw.gnonograms.meson.in.appdata.xml b/data/com.github.jeremypw.gnonograms.meson.in.appdata.xml
index 9a14ab1..f1bc4b6 100644
--- a/data/com.github.jeremypw.gnonograms.meson.in.appdata.xml
+++ b/data/com.github.jeremypw.gnonograms.meson.in.appdata.xml
@@ -23,6 +23,18 @@
LogicGame
+
+
+
+ - Hint button
+ - Strikethrough completed blocks in clue label (with option to disable)
+ - Clue label turns red if completed incorrectly (with option to disable)
+ - Additional shortcuts
+ - Some code refactoring and cleanup
+ - Various bug fixes
+
+
+
diff --git a/debian/changelog b/debian/changelog
index b033f5a..6784e79 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+com.github.jeremypw.gnonograms (1.2.0) xenial; urgency=low
+
+ * Hint button
+ * Strikethrough completed blocks in clue label (with option to disable)
+ * Clue label turns red if completed incorrectly (with option to disable)
+ * Additional shortcuts
+ * Some code refactoring and cleanup
+ * Various bug fixes
+
+ -- Jeremy Wootten Wed, 28 Mar 2018 17:01:00 +0000
+
com.github.jeremypw.gnonograms (1.1.0) xenial; urgency=low
* Save and restore move history
diff --git a/src/core/Gnonogram_solver.vala b/src/core/Gnonogram_solver.vala
index 851bad1..64fc87f 100644
--- a/src/core/Gnonogram_solver.vala
+++ b/src/core/Gnonogram_solver.vala
@@ -350,7 +350,7 @@ namespace Gnonograms {
guesser.cancel_previous_guess ();
state = SolverState.UNDEFINED;
} else {
- critical ("unexpected initial sState %s", initial_state.to_string ());
+ critical ("unexpected initial state %s", initial_state.to_string ());
assert_not_reached ();
}