Skip to content

Commit e88e319

Browse files
committed
3.4.0
1 parent d8d7c8c commit e88e319

File tree

4 files changed

+36
-3
lines changed

4 files changed

+36
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
cmake_minimum_required (VERSION 3.2)
1818

1919
set (SIGCXX_MAJOR_VERSION 3)
20-
set (SIGCXX_MINOR_VERSION 2)
20+
set (SIGCXX_MINOR_VERSION 4)
2121
set (SIGCXX_MICRO_VERSION 0)
2222

2323
set (SIGCXX_API_VERSION 3.0)

NEWS

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
3.4.0 (stable)
2+
3+
* Add track_object(), deprecate track_obj()
4+
(Kjell Ahlstedt) Issue #78 (LordVolumeForm)
5+
* Add trackable_signal_with_accumulator and trackable_signal
6+
(Kjell Ahlstedt) Issue #80 (H2NCH2COOH)
7+
8+
Examples, tests:
9+
* examples/member_method: Make on_print() non-virtual
10+
* test_accumulated.cc: clang++ requires another 'template'
11+
(Kjell Ahlstedt)
12+
* test_limit_reference.cc: Don't use auto where a slot is required
13+
(Kjell Ahlstedt) Issue #44 (Murray Cumming)
14+
15+
Documentation:
16+
* signal::make_slot(): Note that signal does not derive from trackable
17+
(Kjell Ahlstedt) Issue #80 (H2NCH2COOH)
18+
19+
Build:
20+
* Meson: Avoid configuration warnings
21+
(Kjell Ahlstedt)
22+
* Meson, MSVC: Compensate for the lack of msvc_recommended_pragmas.h
23+
(Chun-wei Fan)
24+
* Fix build with -Dbuild-deprecated-api=false
25+
(Kjell Ahlstedt) Issue #82 (bbhtt)
26+
* Meson: Detect if we build from a git subtree
27+
(William Roy) Merge request gtkmm!72
28+
* Meson: Simplify lookup of python command
29+
(wael444) Pull request #83
30+
* Meson: Add build_tests option
31+
(Fabrice Fontaine) Pull request #84
32+
33+
134
3.2.0 (stable)
235

336
* Allow slots with rvalue reference parameters

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
## You should have received a copy of the GNU Lesser General Public License
1616
## along with this library. If not, see <http://www.gnu.org/licenses/>.
1717

18-
AC_INIT([libsigc++], [3.2.0],
18+
AC_INIT([libsigc++], [3.4.0],
1919
[https://github.com/libsigcplusplus/libsigcplusplus/issues/],
2020
[libsigc++], [https://libsigcplusplus.github.io/libsigcplusplus/])
2121
AC_PREREQ([2.59])

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is part of libsigc++.
22

33
project('libsigc++', 'cpp',
4-
version: '3.2.0',
4+
version: '3.4.0',
55
license: 'LGPLv2.1+',
66
default_options: [
77
'cpp_std=c++17',

0 commit comments

Comments
 (0)