2.58.1

Signed-off-by: Philip Withnall <withnall@endlessm.com>
diff --git a/NEWS b/NEWS
index 46c7c99..0045773 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,45 @@
+Overview of changes in GLib 2.58.1
+==================================
+
+* Fix to a regression in listing GIcon fallbacks (#1513)
+
+* Changes to pkg-config paths to helper programs when building with autotools:
+  paths are now absolute with reference to the .pc file’s ${prefix} (#1521)
+
+* Fix installation path of glib-gettextize helper on Meson (!290)
+
+* Fix autostarting xdg-desktop-portal (!321, a backport of !317)
+
+* Various fixes to the network monitor (#1518, !294)
+
+* Various compilation fixes on macOS (generally older versions and older
+  compilers)
+
+Bugs fixed:
+ !318 codegen: Change pointer casting to remove type-punning warnings
+ #1513 GIcon regression?
+ #1521 pkg-config files differ between Autotools and Meson build
+ !321 Backport “Autostart xdg-desktop-portal if needed” to glib-2-58
+ #1518 /network-monitor/create-in-thread fails in (LXC) containers on glib-2-56
+ #1509 test_timeval_to_iso8601_overflow: 'out' should be NULL
+ !288 Backport `command -v` vs `which` changes to glib-2-58
+ !298 GLib 2.58 backports of various small patches
+   !295 meson: fix typo
+   !294 portal network monitor: Always emit changed signal on changed
+   !290 build: fix installation dir of glib-gettextize
+   #1488 ‘O_CLOEXEC’ undeclared (first use in this function)
+   #1506 error: redefinition of typedef 'GKqueueFileMonitor'
+
+* Translation updates:
+ Brazilian Portuguese
+ Czech
+ Danish
+ Greek
+ Hungarian
+ Latvian
+ Swedish
+
+
 Overview of changes in GLib 2.58.0
 ==================================
 
diff --git a/configure.ac b/configure.ac
index 3b9df16..37b2f48 100644
--- a/configure.ac
+++ b/configure.ac
@@ -31,8 +31,8 @@
 
 m4_define([glib_major_version], [2])
 m4_define([glib_minor_version], [58])
-m4_define([glib_micro_version], [0])
-m4_define([glib_interface_age], [0])
+m4_define([glib_micro_version], [1])
+m4_define([glib_interface_age], [1])
 m4_define([glib_binary_age],
           [m4_eval(100 * glib_minor_version + glib_micro_version)])
 m4_define([glib_version],
diff --git a/meson.build b/meson.build
index 4f99a2c..0a0de3c 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
 project('glib', 'c', 'cpp',
-  version : '2.58.0',
+  version : '2.58.1',
   meson_version : '>= 0.47.0',
   default_options : [
     'buildtype=debugoptimized',