summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS11
-rw-r--r--configure.ac2
2 files changed, 12 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index e04319d4..cecf91d2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,14 @@
+Zenity 3.24.2
+ - No changes
+
+Zenity 3.24.1
+ - Translation updates
+ - Fix style (Arx Cruz)
+ - Adding clang-format script (Arx Cruz)
+ - Fix message dialog width and height on recent Gtk (Alan)
+ - Bug 762347: Addition of entry text width option (Arx Cruz)
+ - Fix misleading indentation (Matthias Clasen)
+
Zenity 3.24.0
- Translations updates
Zenity 3.22.0
diff --git a/configure.ac b/configure.ac
index cee5c0ed..fb9f2fcf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([Zenity],[3.24.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=zenity],[zenity])
+AC_INIT([Zenity],[3.24.2],[http://bugzilla.gnome.org/enter_bug.cgi?product=zenity],[zenity])
AC_PREREQ([2.63])
bgstack15