summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2020-03-25 11:06:51 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2020-03-25 11:06:51 +0100
commit7e20b36bddab74faed39aa3768d07fd372fce596 (patch)
tree97c90226fb2f4171223aec8698bb15c4cd2eee0d
parent2acde6c77a781120551881f20c8340a66c225ac3 (diff)
downloadsigc++-7e20b36bddab74faed39aa3768d07fd372fce596.tar.gz
3.0.33.0.3
-rw-r--r--NEWS17
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 19 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 7f49af2..77e3d7d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,20 @@
+3.0.3 (stable)
+
+Build:
+* docs/docs/reference/meson.build: Check if perl is found
+ (Kjell Ahlstedt) Issue #53 (Rasmus Thomsen)
+* README.md: Describe building with Meson
+ (Kjell Ahlstedt)
+
+Examples:
+* Add example of using libsigc++ with Qt
+ (Robert Middleton) Pull request #35
+
+Tests:
+* Replace C-style casts with static_cast<>
+ (Lennard Berger)
+
+
3.0.2 (stable)
* Build: Meson build improvements.
diff --git a/configure.ac b/configure.ac
index 1a695a3..d815d47 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.2],
+AC_INIT([libsigc++], [3.0.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 320a60e..449d43c 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of libsigc++.
project('libsigc++', 'cpp',
- version: '3.0.2',
+ version: '3.0.3',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++17',