Skip to content

Commit baab13f

Browse files
committed
3.2.0
1 parent c9b2b53 commit baab13f

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
cmake_minimum_required (VERSION 3.2)
1818

1919
set (SIGCXX_MAJOR_VERSION 3)
20-
set (SIGCXX_MINOR_VERSION 0)
21-
set (SIGCXX_MICRO_VERSION 7)
20+
set (SIGCXX_MINOR_VERSION 2)
21+
set (SIGCXX_MICRO_VERSION 0)
2222

2323
set (SIGCXX_API_VERSION 3.0)
2424
set (PACKAGE_VERSION ${SIGCXX_MAJOR_VERSION}.${SIGCXX_MINOR_VERSION}.${SIGCXX_MICRO_VERSION})

NEWS

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
3.2.0 (stable)
2+
3+
* Allow slots with rvalue reference parameters
4+
(Slava Andrejev) Pull requests #74, #77
5+
6+
Build:
7+
* Meson build: Perl is not required by new versions of mm-common
8+
(Kjell Ahlstedt)
9+
* NMake Makefiles: Support building with VS2022
10+
(Chun-wei Fan)
11+
12+
Documentation:
13+
* Upgrade the manual from DocBook 4.1 to DocBook 5.0
14+
(Kjell Ahlstedt)
15+
* ptr_fun(), mem_fun() docs: Remove left-overs from sigc++-2.0
16+
(Kjell Ahlstedt)
17+
* Fix links to sigc::slot and sigc::signal
18+
(Kjell Ahlstedt)
19+
20+
121
3.0.7 (stable)
222

323
Meson build:

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

0 commit comments

Comments
 (0)