summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2022-02-11 16:10:36 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2022-02-11 16:10:36 +0100
commitbaab13fd40d90dc0a33241a4bd517f985479a0c5 (patch)
tree17cf61628ef86116250f22e5e9970219184b0b22
parentc9b2b53059a2fc23eb939e98a59c61c2414ec3f8 (diff)
downloadsigc++-baab13fd40d90dc0a33241a4bd517f985479a0c5.tar.gz
3.2.03.2.0
-rw-r--r--CMakeLists.txt4
-rwxr-xr-xNEWS20
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
4 files changed, 24 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1863d8e..e1b28fe 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -17,8 +17,8 @@
cmake_minimum_required (VERSION 3.2)
set (SIGCXX_MAJOR_VERSION 3)
-set (SIGCXX_MINOR_VERSION 0)
-set (SIGCXX_MICRO_VERSION 7)
+set (SIGCXX_MINOR_VERSION 2)
+set (SIGCXX_MICRO_VERSION 0)
set (SIGCXX_API_VERSION 3.0)
set (PACKAGE_VERSION ${SIGCXX_MAJOR_VERSION}.${SIGCXX_MINOR_VERSION}.${SIGCXX_MICRO_VERSION})
diff --git a/NEWS b/NEWS
index 2f3d8cb..3cf92d6 100755
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,23 @@
+3.2.0 (stable)
+
+* Allow slots with rvalue reference parameters
+ (Slava Andrejev) Pull requests #74, #77
+
+Build:
+* Meson build: Perl is not required by new versions of mm-common
+ (Kjell Ahlstedt)
+* NMake Makefiles: Support building with VS2022
+ (Chun-wei Fan)
+
+Documentation:
+* Upgrade the manual from DocBook 4.1 to DocBook 5.0
+ (Kjell Ahlstedt)
+* ptr_fun(), mem_fun() docs: Remove left-overs from sigc++-2.0
+ (Kjell Ahlstedt)
+* Fix links to sigc::slot and sigc::signal
+ (Kjell Ahlstedt)
+
+
3.0.7 (stable)
Meson build:
diff --git a/configure.ac b/configure.ac
index 4817a6f..1307c2f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@
## You should have received a copy of the GNU Lesser General Public License
## along with this library. If not, see <http://www.gnu.org/licenses/>.
-AC_INIT([libsigc++], [3.0.7],
+AC_INIT([libsigc++], [3.2.0],
[https://github.com/libsigcplusplus/libsigcplusplus/issues/],
[libsigc++], [https://libsigcplusplus.github.io/libsigcplusplus/])
AC_PREREQ([2.59])
diff --git a/meson.build b/meson.build
index bc2e1d8..ca49138 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of libsigc++.
project('libsigc++', 'cpp',
- version: '3.0.7',
+ version: '3.2.0',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++17',