summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2018-08-30 14:40:04 +0100
committerPhilip Withnall <withnall@endlessm.com>2018-08-30 18:11:13 +0100
commitc138b98e363df8b95c2ee3eac214649b2908ad68 (patch)
tree314cb73e226412ef0401c2dc967e6d67acb471d8
parent90815c160b1c2cc15821e0dffa44ff7c4aa2787c (diff)
2.58.02.58.0
Signed-off-by: Philip Withnall <withnall@endlessm.com>
-rw-r--r--NEWS45
-rw-r--r--configure.ac4
-rw-r--r--meson.build2
3 files changed, 48 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 28f72d4fc..46c7c99f0 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,48 @@
+Overview of changes in GLib 2.58.0
+==================================
+
+* Tarball built with `ninja dist`, so if you want to build this release with
+ autotools (which is supported), you will need to re-run autogen.sh. This
+ release, and all micro releases in the 2.58.x series, support being built
+ with Meson or autotools. See:
+ https://mail.gnome.org/archives/gtk-devel-list/2018-June/msg00012.html
+
+* Fix cancellation of g_subprocess_communicate_async() calls. See !266.
+
+* Drop support for the __int64 type, which further breaks compilation on old
+ MSVC versions (before VS2013). See #1313.
+
+* Expose GSettings schema directory in gio-2.0.pc as `schemasdir`. See !274.
+
+* Support v3 of the xdg-desktop-portal network monitor API. See !265, !279.
+
+* Fix G_MODULE_SUFFIX on macOS when GLib is built with Meson — it should be `so`
+ rather than `dylib`. Projects that use Meson and the `g_module_build_path()`
+ API such as glib-networking should pass `name_suffix:` to `shared_module()` to
+ ensure that plugins continue to be called libfoo.so on macOS. See !280.
+
+Bugs fixed:
+ !280 meson: Always set G_MODULE_SUFFIX to `so` on macOS
+ !266 subprocess: Fix communicate_cancelled signature
+ !279 Revert "Add a gnet utility" (see !265)
+ !265 Network monitor again
+ !274 gio: Provide schemas directory information in pkg-config file
+ !239 gvariant: Fix more bounds checking in GVariant text format parser
+ !195 garray: add overflow checks before expanding array
+ #1497 g_strdup_printf warns on invalid format specifier with G_GUINT64_FORMAT on Win32
+ !270 autotools: remove support for the __int64 type. See #1313
+ !267 ci: Add an autotools job
+
+* Translation updates:
+ Czech
+ Galician
+ Indonesian
+ Italian
+ Kazakh
+ Korean
+ Turkish
+
+
Overview of changes in GLib 2.57.3
==================================
diff --git a/configure.ac b/configure.ac
index fea9083d6..3b9df1622 100644
--- a/configure.ac
+++ b/configure.ac
@@ -30,8 +30,8 @@ m4_define(glib_configure_ac)
# <mclasen> on the unstable (ie master), interface age = 0
m4_define([glib_major_version], [2])
-m4_define([glib_minor_version], [57])
-m4_define([glib_micro_version], [3])
+m4_define([glib_minor_version], [58])
+m4_define([glib_micro_version], [0])
m4_define([glib_interface_age], [0])
m4_define([glib_binary_age],
[m4_eval(100 * glib_minor_version + glib_micro_version)])
diff --git a/meson.build b/meson.build
index a03b73c55..aa7d8e4f7 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('glib', 'c', 'cpp',
- version : '2.57.3',
+ version : '2.58.0',
meson_version : '>= 0.47.0',
default_options : [
'buildtype=debugoptimized',