Skip to content

Commit 6534471

Browse files
committed
3.8.0
1 parent abd78e8 commit 6534471

File tree

4 files changed

+54
-3
lines changed

4 files changed

+54
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
cmake_minimum_required (VERSION 3.10)
1717

1818
set (SIGCXX_MAJOR_VERSION 3)
19-
set (SIGCXX_MINOR_VERSION 4)
19+
set (SIGCXX_MINOR_VERSION 8)
2020
set (SIGCXX_MICRO_VERSION 0)
2121

2222
set (SIGCXX_API_VERSION 3.0)

NEWS

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,54 @@
1+
3.8.0 (stable) 2025-10-26
2+
3+
This release and future releases will not store tarballs at
4+
download.gnome.org/sources/. Only modules with source code at
5+
gitlab.gnome.org/GNOME/ can store tarballs there now.
6+
Tarballs of libsigcplusplus are now stored only at
7+
github.com/libsigcplusplus/libsigcplusplus/releases/.
8+
9+
* slot, signal: static_assert not using R,T... syntax
10+
(Daniel Boles) Issue #86, pull request #100
11+
* scoped_connection: Remove [[nodiscard]]
12+
(Kjell Ahlstedt) Issue #102 (Vadym)
13+
* Add signal_connect(): Helper functions to ease connecting functions
14+
or methods to signals
15+
(Rémi Hérilier) Issue #104, #108, pull request #107
16+
* Simplify ambiguity removal when compiling with MSVC
17+
(Rémi Hérilier) Pull request #110
18+
19+
Documentation:
20+
* README.md: Add info about building the documentation
21+
(Kjell Ahlstedt) Issue #101 (raphael10-collab)
22+
* Don't link to removed parts of gnome.org
23+
(Kjell Ahlstedt)
24+
* Remove obsolete FSF (Free Software Foundation) address
25+
(Tom spot Callaway) Pull request libxmlplusplus#72
26+
* Clarify download locations.
27+
Releases will not be stored at download.gnome.org/sources/.
28+
(Kjell Ahlstedt)
29+
30+
Build:
31+
* Meson build: Don't fail if warning_level=everything
32+
(Daniel Boles, Kjell Ahlstedt) Merge request gtkmm!87
33+
* Meson build: Add the build-manual option
34+
(Kjell Ahlstedt)
35+
* Meson build: Require meson >= 0.62.0.
36+
Use Meson's pkgconfig module instead of using the *.pc.in templates.
37+
(Kjell Ahlstedt)
38+
* Meson build: Detect cl-like compilers.
39+
Don't check MSVC version for non-MSVC cl
40+
(Julia DeMille) Pull requst #109
41+
* CMake build: Change minimum required cmake version from 3.2 to 3.10
42+
(Alexander Drozdov) Issue #112
43+
* Meson build: build-pdf: Prevent infinite loop in dblatex
44+
(Philippe Baril Lecavalier) Pull request #113
45+
* Meson build: Better detection of MSVC-like compilers
46+
(Kjell Ahlstedt)
47+
* Meson build: Use the Python installation that Meson uses.
48+
See merge request glibmm!67
49+
(Kjell Ahlstedt)
50+
51+
152
3.6.0 (stable)
253

354
* sigc++config.h.*: Update and clean up a bit for Visual Studio

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.6.0],
18+
AC_INIT([libsigc++], [3.8.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.6.0',
4+
version: '3.8.0',
55
license: 'LGPL-3.0-or-later',
66
default_options: [
77
'cpp_std=c++17',

0 commit comments

Comments
 (0)