summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS34
-rw-r--r--configure.ac4
2 files changed, 36 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index c5b224a9..accb486f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,37 @@
+2.53.2 (unstable):
+Distro packagers should probably not package this yet.
+
+Glib:
+* ConstructParams: Do not increment allocation size twice
+ (Daniel Elstner)
+
+Gio:
+* ActionMap: Really fix add_action_with_parameter().
+ (Daniel Boles) Bug 774444#c31
+* UnixSocketAddress::create(): Remove a default value to avoid ambiguity.
+ (Kjell Ahlstedt) Bug #782592
+
+Gio::DBus
+* Proxy: Wrap call() and call_sync() methods.
+ (Vyacheslav Yurkov) Bug #781818
+
+gmmproc:
+* Use of static_cast<> instead of C-style casts.
+ (Murray Cumming)
+
+Build:
+* Fix the build on MacOS, where glib doesn't have gdesktopinfo.
+ (John Ralls) Bug #781947
+* Really use desktopappinfo.hg to fix the build.
+ (Murray Cumming)
+
+Documentation:
+* Glib, Gio: Update documentation of in-class enums.
+ (Kjell Ahlstedt)
+* ActionMap: Improve add_action_with_parameter docs
+ (Daniel Boles)
+
+
2.53.1.1 (unstable):
Glib:
diff --git a/configure.ac b/configure.ac
index 75bdf0f1..744e50b1 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.53.1.1],
+AC_INIT([glibmm], [2.53.2],
[http://bugzilla.gnome.org/enter_bug.cgi?product=glibmm],
[glibmm], [http://www.gtkmm.org/])
AC_PREREQ([2.59])
@@ -74,7 +74,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.53.1'
+glibreq='2.0 >= 2.53.2'
GLIBMM_MODULES="sigc++-3.0 >= 2.99.5 glib-$glibreq gobject-$glibreq gmodule-$glibreq"
GIOMM_MODULES="$GLIBMM_MODULES gio-$glibreq"