summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2020-09-27 12:32:09 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2020-09-27 12:32:09 +0200
commit594062f4ff9bcd4ae2c1a8e33b21df68d473affb (patch)
tree4af03540a575086be9998d421f618a15937e613d
parenta66bdbcdf7ec6a80591e6190444ce5d3d4ec2784 (diff)
downloadsigc++-594062f4ff9bcd4ae2c1a8e33b21df68d473affb.tar.gz
3.0.43.0.4
-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 77e3d7d..fc2fdcd 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,22 @@
+3.0.4 (stable)
+
+Build:
+* Meson build: Set default value of the 'warnings' option to 'min'
+ (Kjell Ahlstedt)
+* NMake Makefiles: Several improvements
+ (Chun-Wei Fan) Pull request #57
+* docs/reference/: Update for Doxygen >= 1.8.16
+ (Kjell Ahlstedt)
+
+Documentation:
+* docs/manual/libsigc_manual.xml: Update signal and slot syntax
+ (Kjell Ahlstedt) Issue #59 (Denis Washington)
+
+The tarball for 3.0.4 has been created with 'meson dist'.
+If you build with Autotools from the tarball, please read the relevant
+part of README.md.
+
+
3.0.3 (stable)
Build:
diff --git a/configure.ac b/configure.ac
index d815d47..d34d4bf 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.3],
+AC_INIT([libsigc++], [3.0.4],
[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 2bbb307..07ec66e 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of libsigc++.
project('libsigc++', 'cpp',
- version: '3.0.3',
+ version: '3.0.4',
license: 'LGPLv2.1+',
default_options: [
'cpp_std=c++17',