summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2020-03-25 10:15:55 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2020-03-25 10:15:55 +0100
commit88fdb3a14ec67de233fed22646fc9b14c24367f5 (patch)
tree56c7677a0f94b1b969d0a044e32109764104ec74
parentac4440f76c1db5488e96cc0f8fe5d40e464cb4be (diff)
downloadsigc++-88fdb3a14ec67de233fed22646fc9b14c24367f5.tar.gz
2.10.32.10.3
-rw-r--r--NEWS19
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 21 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index f680a44..9af543e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,22 @@
+2.10.3 (stable)
+
+Build:
+* Add Meson build, alongside the existing Autotools build.
+ (Kjell Ahlstedt, Chun-Wei Fan) Pull request #47, #50
+* Improve MSVC builds on Windows
+ (Chun-Wei Fan) Pull request #50
+* meson.build: Check if .git is a directory or file
+ (Kjell Ahlstedt) Merge request pangomm!8 (Ting-Wei Lan)
+* docs/reference/meson.build: Check if perl is found
+ (Kjell Ahlstedt) Issue #53 (Rasmus Thomsen)
+* README: Describe building with Meson and Autotools
+ (Kjell Ahlstedt)
+
+Tests:
+* Make test_track_obj.cc compile with clang++
+ (Kjell Ahlstedt)
+
+
2.10.2: (stable)
This release is identical to 2.10.1, except for:
diff --git a/configure.ac b/configure.ac
index 8477644..17f1ec6 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.2],
+AC_INIT([libsigc++], [2.10.3],
[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 d4d778a..cfd40ef 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of libsigc++.
project('libsigc++', 'cpp',
- version: '2.10.2',
+ version: '2.10.3',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++11',