summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xNEWS15
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 17 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index bfaf8125..9688fe6b 100755
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,18 @@
+2.76.0 (stable):
+
+Glib:
+* Dispatcher: Don't warn when a Dispatcher is deleted while
+ messages are pending.
+ (Kjell Ahlstedt) Issue #108 (PBS)
+* Dispatcher: Add const versions of emit() and operator()()
+ and deprecate the non-const versions.
+ (Kjell Ahlstedt) Issue #103 (PBS)
+
+Gio:
+* ListModel: Add get_typed_object()
+ (Kjell Ahlstedt) See issue gtkmm#132
+
+
2.75.0 (unstable):
Glib:
diff --git a/configure.ac b/configure.ac
index 049949c3..6c8a2dc4 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.75.0],
+AC_INIT([glibmm], [2.76.0],
[https://gitlab.gnome.org/GNOME/glibmm/issues],
[glibmm], [http://www.gtkmm.org/])
AC_PREREQ([2.59])
diff --git a/meson.build b/meson.build
index 90ea7308..1e34b4e4 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of glibmm.
project('glibmm', 'cpp',
- version: '2.75.0',
+ version: '2.76.0',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++17',