summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2023-01-17 15:33:38 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2023-01-17 15:33:38 +0100
commite32096868274b4162790ed31309d87bc7ba43b14 (patch)
tree377b13779416c062d7ff3cc6aca6954fa531efd5
parent0520f5f492d0c9e50384defd167597d7904e4799 (diff)
downloadglibmm-e32096868274b4162790ed31309d87bc7ba43b14.tar.gz
2.75.02.75.0
-rwxr-xr-xNEWS40
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 42 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 4eae2beb..bfaf8125 100755
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,43 @@
+2.75.0 (unstable):
+
+Glib:
+* Module: Deprecate build_path()
+* Binding: Fix the bind_property() with two transformation functions
+* Add the GLIBMM_CHECK_VERSION() preprocessor macro
+ (Kjell Ahlstedt)
+
+Gio:
+* NetworkMonitor::get_default(): Add refreturn
+ (Kjell Ahlstedt) Issue #104 (ilya-fedin)
+* AppInfo: Add get_[recommended|fallback]_for_type()
+ (Kjell Ahlstedt) Issue #105 (ilya-fedin)
+* Add BytesIcon
+ (Kjell Ahlstedt) Issue #107 (ilya-fedin)
+* ListStore: Rename a local variable
+ (Chun-wei Fan) Merge request !59
+* Settings: Add bind() with mapping functions and unbind()
+ (Kjell Ahlstedt)
+
+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..049949c3 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.75.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 838d42d8..90ea7308 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.75.0',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++17',