summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS18
-rw-r--r--configure.ac4
2 files changed, 20 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index cf879ae1..c8f5562c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,21 @@
+2.47.4:
+
+Glib::
+* ustring: Don't allow comparison to 0.
+ (Kjell Ahlstedt) Bug #572978 (Armin Burgmeier)
+
+Gio:
+* ActionMap: Fix the ref count in lookup_action_vfunc().
+ (Kjell Ahlstedt) Bug #758813 (Aurimas Černius)
+
+Build:
+* Dispatcher: #include <mutex> in Windows builds.
+ (T Sailor) Bug #758894
+* Gio::Application: Destructor: Use noexcept in the implementation too.
+ (Murray Cumming) Bug #758798 (Émeric MASCHINO)
+* Fix the build with --disable-deprecated-api.
+ (Kjell Ahlstedt)
+
2.47.3.1:
* Use thread_local instead of (deprecated) Glib::Threads::Private.
diff --git a/configure.ac b/configure.ac
index 57e90d54..77e92f14 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@
## You should have received a copy of the GNU Lesser General Public License
## along with this library. If not, see <http://www.gnu.org/licenses/>.
-AC_INIT([glibmm], [2.47.3.1],
+AC_INIT([glibmm], [2.47.4],
[http://bugzilla.gnome.org/enter_bug.cgi?product=glibmm],
[glibmm], [http://www.gtkmm.org/])
AC_PREREQ([2.59])
@@ -62,7 +62,7 @@ AS_IF([test "x$enable_static" = xyes],
AC_DEFINE([GIOMM_STATIC_LIB], [1], [Define if giomm is built as a static library])
])
-glibreq='2.0 >= 2.46.0'
+glibreq='2.0 >= 2.47.4'
GLIBMM_MODULES="sigc++-2.0 >= 2.6.0 glib-$glibreq gobject-$glibreq gmodule-$glibreq"
GIOMM_MODULES="$GLIBMM_MODULES gio-$glibreq"