summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS10
-rw-r--r--data/org.gnome.Glade.appdata.xml.in14
-rw-r--r--meson.build4
3 files changed, 26 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index e72e354c..37f2396b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,14 @@
============
+Glade 3.38.2
+============
+
+ - Fix windows compatibility issues
+ - Fix build against Python 3.9 (Jan Alexander Steffens)
+ - Fix issue #355 "Make notification text selectable"
+ - Fix issue #53 "Can't choose a FileChooserDialog for a FileChooserButton"
+ - Fix issue #371 "Glade user survey not working (TLS error)"
+
+============
Glade 3.38.1
============
diff --git a/data/org.gnome.Glade.appdata.xml.in b/data/org.gnome.Glade.appdata.xml.in
index b94e9fe7..196b0b8b 100644
--- a/data/org.gnome.Glade.appdata.xml.in
+++ b/data/org.gnome.Glade.appdata.xml.in
@@ -49,6 +49,20 @@
<project_group>GNOME</project_group>
<translation type="gettext">glade</translation>
<releases>
+ <release version="3.38.2" date="2020-11-20">
+ <description>
+ <p>Glade 3.38.2 release!</p>
+ <ul>
+ <li>Fixed windows compatibility issues.</li>
+ <li>Fix build against Python 3.9 (Jan Alexander Steffens)</li>
+ </ul>
+ </description>
+ <issues>
+ <issue url="https://gitlab.gnome.org/GNOME/glade/-/issues/355">Issue #355 "Make notification text selectable"</issue>
+ <issue url="https://gitlab.gnome.org/GNOME/glade/-/issues/53">Issue #53 "Can't choose a FileChooserDialog for a FileChooserButton"</issue>
+ <issue url="https://gitlab.gnome.org/GNOME/glade/-/issues/371">Issue #371 "Glade user survey not working (TLS error)"</issue>
+ </issues>
+ </release>
<release version="3.38.1" date="2020-10-04">
<description>
<p>Glade 3.38.1 release!</p>
diff --git a/meson.build b/meson.build
index 34498a4f..934f7195 100644
--- a/meson.build
+++ b/meson.build
@@ -8,7 +8,7 @@
# version will always know they are on a development release.
project(
'glade', 'c',
- version: '3.38.1',
+ version: '3.38.2',
license: 'GPL2',
default_options: 'buildtype=debugoptimized',
meson_version: '>= 0.53.0',
@@ -48,7 +48,7 @@ gladeui_libname = '@0@-@1@'.format(gladeui_name, gladeui_version)
# If any interfaces have been removed since the last public release, then set gladeui_age to 0.
# Reference: http://www.gnu.org/software/libtool/manual/libtool.html#Versioning
-gladeui_revision = 1
+gladeui_revision = 2
gladeui_current = 13
gladeui_age = 0
gladeui_current_minus_age = gladeui_current - gladeui_age