File tree Expand file tree Collapse file tree 4 files changed +36
-3
lines changed Expand file tree Collapse file tree 4 files changed +36
-3
lines changed Original file line number Diff line number Diff line change 17
17
cmake_minimum_required (VERSION 3.2 )
18
18
19
19
set (SIGCXX_MAJOR_VERSION 3 )
20
- set (SIGCXX_MINOR_VERSION 2 )
20
+ set (SIGCXX_MINOR_VERSION 4 )
21
21
set (SIGCXX_MICRO_VERSION 0 )
22
22
23
23
set (SIGCXX_API_VERSION 3.0 )
Original file line number Diff line number Diff line change
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
+
1
34
3.2.0 (stable)
2
35
3
36
* Allow slots with rvalue reference parameters
Original file line number Diff line number Diff line change 15
15
# # You should have received a copy of the GNU Lesser General Public License
16
16
# # along with this library. If not, see <http://www.gnu.org/licenses/>.
17
17
18
- AC_INIT ( [ libsigc++] , [ 3.2 .0] ,
18
+ AC_INIT ( [ libsigc++] , [ 3.4 .0] ,
19
19
[ https://github.com/libsigcplusplus/libsigcplusplus/issues/] ,
20
20
[ libsigc++] , [ https://libsigcplusplus.github.io/libsigcplusplus/] )
21
21
AC_PREREQ ( [ 2.59] )
Original file line number Diff line number Diff line change 1
1
# This file is part of libsigc++.
2
2
3
3
project (' libsigc++' , ' cpp' ,
4
- version : ' 3.2 .0' ,
4
+ version : ' 3.4 .0' ,
5
5
license : ' LGPLv2.1+' ,
6
6
default_options : [
7
7
' cpp_std=c++17' ,
You can’t perform that action at this time.
0 commit comments