summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS30
-rw-r--r--data/org.gnome.Glade.appdata.xml.in15
-rw-r--r--meson.build4
3 files changed, 47 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index ed9e57d0..e72e354c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,34 @@
============
+Glade 3.38.1
+============
+
+ - Fix issue #471 "XML not updated after adding element"
+ - Fix issue #480 "version field not always updated in XML"
+ - Fix issue #474 "GtkLabel: setup text attribute issues"
+ - Fix issue #479 "Glade 3.36.0 segfaults when opening a file"
+ - Fix issue pasting widget with ctrl+v in GtkGrid
+
+Added/updated translations
+
+ - cs, courtesy of Marek Černocký
+ - de, courtesy of Stephan Woidowski
+ - es, courtesy of Daniel Mustieles
+ - eu, courtesy of Asier Sarasua Garmendia
+ - fr, courtesy of Thibault Martin
+ - gl, courtesy of Fran Dieguez
+ - hu, courtesy of Meskó Balázs
+ - id, courtesy of Kukuh Syafaat
+ - it, courtesy of Milo Casagrande
+ - lt, courtesy of Aurimas Černius
+ - pl, courtesy of Piotr Drąg
+ - pt_BR, courtesy of Rafael Fontenelle
+ - sl, courtesy of Matej Urbančič
+ - sv, courtesy of Anders Jonsson
+ - tr, courtesy of Emin Tufan Çetin
+ - uk, courtesy of Yuri Chornoivan
+ - zh_CN, courtesy of Mandy Wang
+
+============
Glade 3.38.0
============
diff --git a/data/org.gnome.Glade.appdata.xml.in b/data/org.gnome.Glade.appdata.xml.in
index 7c46f6e6..b94e9fe7 100644
--- a/data/org.gnome.Glade.appdata.xml.in
+++ b/data/org.gnome.Glade.appdata.xml.in
@@ -49,6 +49,21 @@
<project_group>GNOME</project_group>
<translation type="gettext">glade</translation>
<releases>
+ <release version="3.38.1" date="2020-10-04">
+ <description>
+ <p>Glade 3.38.1 release!</p>
+ <ul>
+ <li>Fixed various stability and functionality issues.</li>
+ <li>Updated translations.</li>
+ </ul>
+ </description>
+ <issues>
+ <issue url="https://gitlab.gnome.org/GNOME/glade/-/issues/471">Issue #471: XML not updated after adding element</issue>
+ <issue url="https://gitlab.gnome.org/GNOME/glade/-/issues/480">Issue #480: version field not always updated in XML</issue>
+ <issue url="https://gitlab.gnome.org/GNOME/glade/-/issues/474">Issue #474: GtkLabel: setup text attribute issues</issue>
+ <issue url="https://gitlab.gnome.org/GNOME/glade/-/issues/479">Issue #479: Glade 3.36.0 segfaults when opening a file</issue>
+ </issues>
+ </release>
<release version="3.38.0" date="2020-09-12">
<description>
<p>Glade 3.38.0 release!</p>
diff --git a/meson.build b/meson.build
index 2aeb240e..bc2c2abc 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.0',
+ version: '3.38.1',
license: 'GPL2',
default_options: 'buildtype=debugoptimized',
meson_version: '>= 0.49.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 = 0
+gladeui_revision = 1
gladeui_current = 13
gladeui_age = 0
gladeui_current_minus_age = gladeui_current - gladeui_age