diff options
author | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-11-25 15:04:05 +0100 |
---|---|---|
committer | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-11-25 15:04:05 +0100 |
commit | 5651a5cfeb0323239fac7f3966053ff395ad9f60 (patch) | |
tree | 5897d703a042c451bfdf46b5ee72b07b0adc77bf | |
parent | 267562cc87e97fe145191308328e8805191c20b7 (diff) | |
download | sigc++-5651a5cfeb0323239fac7f3966053ff395ad9f60.tar.gz |
2.10.62.10.6
-rw-r--r-- | NEWS | 14 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 16 insertions, 2 deletions
@@ -1,3 +1,17 @@ +2.10.6 (stable) + +Build: +* Meson build: Fix versioning on macOS + (Tom Schoonjans) Pull request #65 + +Documentation: +* sigc++/sigc++.h: Describe how to use libsigc++ with Meson + (Kjell Ahlstedt) +* Update links to the web page, now at + libsigcplusplus.github.io/libsigcplusplus + (Kjell Ahlstedt) + + 2.10.4 (stable) Build: diff --git a/configure.ac b/configure.ac index c2fafcd..166e37e 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++], [2.10.4], +AC_INIT([libsigc++], [2.10.6], [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 8c42063..b31ac07 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ # This file is part of libsigc++. project('libsigc++', 'cpp', - version: '2.10.4', + version: '2.10.6', license: 'LGPLv2.1+', default_options: [ 'cpp_std=c++11', |