Skip to content

Commit eb7db8e

Browse files
committed
3.6.0
1 parent 720bfb6 commit eb7db8e

File tree

3 files changed

+39
-2
lines changed

3 files changed

+39
-2
lines changed

NEWS

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
3.6.0 (stable)
2+
3+
* sigc++config.h.*: Update and clean up a bit for Visual Studio
4+
(Chun-wei Fan) Pull request #95
5+
* scoped_connection: New wrapper to auto-disconnect a slot
6+
Issue #87, pull request #97 (Daniel Boles)
7+
* signal: Add connect_first()
8+
(Kjell Ahlstedt) Issue #81 (LordVolumeForm)
9+
10+
Documentation:
11+
* connection: Improve the class documentation
12+
(Kjell Ahlstedt) Issue #88 (Daniel Boles)
13+
* Improve Visual Studio build documentation
14+
(Chun-wei Fan) Pull request #93
15+
* Remove AUTHORS and add general information to README.md
16+
(Kjell Ahlstedt) Issue gtkmm#140
17+
* manual: Add paragraph about new scoped_connection
18+
Pull request #99 (Daniel Boles)
19+
20+
Tests:
21+
* Add test_scoped_connection
22+
Pull request #97 (Daniel Boles)
23+
24+
Build:
25+
* Meson: Don't copy files with configure_file()
26+
(Kjell Ahlstedt)
27+
* Meson: Fix the evaluation of is_git_build on Windows
28+
(Kjell Ahlstedt) Issue gtkmm#131 (William Roy)
29+
* CMake: Prevent multiple target declaration for uninstall
30+
(Francesco Emanuele D'Agostino) Pull request #85
31+
* Visual Studio: Support static builds
32+
Issue #90 (Swat-SomeBug)
33+
(Chun-wei Fan) Pull request #91
34+
* Meson: Don't require the 'dot' command to build the documentation
35+
(Kjell Ahlstedt) Issue #98
36+
37+
138
3.4.0 (stable)
239

340
* Add track_object(), deprecate track_obj()

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.4.0],
18+
AC_INIT([libsigc++], [3.6.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.4.0',
4+
version: '3.6.0',
55
license: 'LGPLv2.1+',
66
default_options: [
77
'cpp_std=c++17',

0 commit comments

Comments
 (0)