summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2022-04-08 15:14:56 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2022-04-08 15:14:56 +0200
commitf3d44e6c9cb1579c1a4e23b70b39edb608792317 (patch)
treef0cef1dedd21016d897bb24644368ee533e5621a
parentaf947cc234c7e8c3b7514770f5fe6b5f6e718be4 (diff)
downloadglibmm-f3d44e6c9cb1579c1a4e23b70b39edb608792317.tar.gz
2.72.02.72.0
-rwxr-xr-xNEWS31
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 33 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 7c9ffc51..37b1dcd8 100755
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,34 @@
+2.72.0 (stable):
+
+Glib:
+* MainContext: Add create(MainContextFlags flags)
+ (Kjell Ahlstedt)
+
+Gio:
+* Add AppInfoMonitor
+ (Kjell Ahlstedt, technic93) Issue #97
+* DBus::Proxy: signal_signal() accepts a signal name
+* File: Add move_async() and move_finish()
+* SocketClient: Deprecate set/get/property_tls_validation_flags()
+* TlsCertificate: Add properties private_key, private_key_pem,
+pkcs11_uri, private_key_pkcs11_uri. Fix the create*() methods.
+* TlsClientConnection.hg: Deprecate set/get/property_validation_flags()
+ (Kjell Ahlstedt)
+
+gmmproc:
+* Add "ignore_deprecations" argument in _WRAP_METHOD()
+ (Kjell Ahlstedt)
+
+Build:
+* Require glib-2.0 >= 2.71.2
+ (Kjell Ahlstedt)
+* MSVC build: Support VS2022 builds
+ (Chun-wei Fan)
+* Meson build: Specify 'check' option in run_command()
+ Require Meson >= 0.55.0
+ (Kjell Ahlstedt)
+
+
2.70.0 (stable):
Glib:
diff --git a/configure.ac b/configure.ac
index 3b835148..6a447d44 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.70.0],
+AC_INIT([glibmm], [2.72.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 90181351..c003db0b 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of glibmm.
project('glibmm', 'cpp',
- version: '2.70.0',
+ version: '2.72.0',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++17'