From 9ae288305b16e4aee2d2ea1fcfb5968c924fa219 Mon Sep 17 00:00:00 2001 From: Kjell Ahlstedt Date: Fri, 23 Dec 2022 10:55:46 +0100 Subject: 2.12.0 --- NEWS | 26 ++++++++++++++++++++++++++ configure.ac | 2 +- meson.build | 2 +- 3 files changed, 28 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index f72e499..cea521f 100755 --- a/NEWS +++ b/NEWS @@ -1,3 +1,29 @@ +2.12.0 (stable) + +* Add track_object(), deprecate track_obj() + (Kjell Ahlstedt) Issue #78 (LordVolumeForm) + +Examples, tests: +* examples/member_method: Make on_print() non-virtual + (Kjell Ahlstedt) +* test_limit_reference.cc: Don't use auto where a slot is required + (Kjell Ahlstedt) Issue #44 (Murray Cumming) + +Build: +* Meson: Avoid configuration warnings + (Kjell Ahlstedt) +* Meson, MSVC: Compensate for the lack of msvc_recommended_pragmas.h + (Chun-wei Fan) +* Fix build with -Dbuild-deprecated-api=false + (Kjell Ahlstedt) Issue #82 (bbhtt) +* Meson: Detect if we build from a git subtree + (William Roy) Merge request gtkmm!72 +* Meson: Simplify lookup of python command + (wael444) Pull request #83 +* Meson: Add build_tests option + (Fabrice Fontaine) Pull request #84 + + 2.10.8 (stable) Build: diff --git a/configure.ac b/configure.ac index b2850e9..7422e5f 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 . -AC_INIT([libsigc++], [2.10.8], +AC_INIT([libsigc++], [2.12.0], [https://github.com/libsigcplusplus/libsigcplusplus/issues/], [libsigc++], [https://libsigcplusplus.github.io/libsigcplusplus/]) AC_PREREQ([2.59]) diff --git a/meson.build b/meson.build index 966d1c0..dc06c96 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ # This file is part of libsigc++. project('libsigc++', 'cpp', - version: '2.10.8', + version: '2.12.0', license: 'LGPLv2.1+', default_options: [ 'cpp_std=c++11', -- cgit v1.2.1