summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2023-03-13 10:35:02 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2023-03-13 10:35:02 +0100
commit224ad2a71a977900707f725416345710f4c718c2 (patch)
treecdb49f5b8d14b33b07502ffe1034c2559b25bdf0
parent50c0a95ba8a3dd89f41415f65e0cc75b5ae39978 (diff)
downloadglibmm-2-74.tar.gz
-rwxr-xr-xNEWS35
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 37 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 4eae2beb..43de4475 100755
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,38 @@
+2.74.1 (stable):
+
+Glib:
+* Binding: Fix the bind_property() with two transformation functions
+ (Kjell Ahlstedt)
+* Dispatcher: Don't warn when a Dispatcher is deleted while
+ messages are pending.
+ (Kjell Ahlstedt) Issue #108 (PBS)
+
+Gio:
+* NetworkMonitor::get_default(): Add refreturn
+ (Kjell Ahlstedt) Issue #104 (ilya-fedin)
+* ListStore: Rename a local variable
+ (Chun-wei Fan) Merge request !59
+
+Documentation:
+* Glib::Binding::unbind(): Fix documentation
+ (Kjell Ahlstedt)
+
+gmmproc:
+* generate_wrap_init.pl.in: Disable warning C4273 on Visual Studio
+ (Chun-wei Fan) Merge request !57
+
+Tests:
+* Fix giomm_simple test on Windows
+ (Chun-wei Fan) Merge request !58
+
+Meson build:
+* Detect if we build from a git subtree
+ (William Roy) Merge request gtkmm!72
+ (Kjell Ahlstedt) Issue gtkmm#131 (William Roy)
+* Don't copy files with configure_file()
+ (Kjell Ahlstedt)
+
+
2.74.0 (stable):
Gio:
diff --git a/configure.ac b/configure.ac
index f9da5f54..13b7ff2e 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.74.0],
+AC_INIT([glibmm], [2.74.1],
[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 838d42d8..90a805e2 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of glibmm.
project('glibmm', 'cpp',
- version: '2.74.0',
+ version: '2.74.1',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++17',