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 1717cmake_minimum_required (VERSION 3.2)
1818
1919set (SIGCXX_MAJOR_VERSION 3)
20- set (SIGCXX_MINOR_VERSION 2 )
20+ set (SIGCXX_MINOR_VERSION 4 )
2121set (SIGCXX_MICRO_VERSION 0)
2222
2323set (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+
1343.2.0 (stable)
235
336* Allow slots with rvalue reference parameters
Original file line number Diff line number Diff line change 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/] )
2121AC_PREREQ ( [ 2.59] )
Original file line number Diff line number Diff line change 11# This file is part of libsigc++.
22
33project (' libsigc++' , ' cpp' ,
4- version : ' 3.2 .0' ,
4+ version : ' 3.4 .0' ,
55 license : ' LGPLv2.1+' ,
66 default_options : [
77 ' cpp_std=c++17' ,
You can’t perform that action at this time.
0 commit comments