summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2022-09-21 14:40:25 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2022-09-21 14:40:25 +0200
commitb6b7e0ba65d8362c2f13b17570302015ae7222b4 (patch)
tree37c1b2c5e9892ff4dc51ac2834b5be8afb69a5b7
parent476bc0072191df4e570bbd5d2431f589a048433a (diff)
1.14.41.14.4
-rwxr-xr-xNEWS19
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 21 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 390ef0d..81cbe93 100755
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,22 @@
+1.14.4 (stable):
+
+Build:
+* Meson build: When mm-common >= 1.0.4 is used, Perl is not required
+ (Kjell Ahlstedt)
+* MSVC build: Support VS2022 builds
+ (Chun-wei Fan) Merge request !19
+* Meson build: Specify 'check' option in run_command()
+ Will be necessary with future versions of Meson.
+ Require Meson >= 0.55.0
+* Meson build: Avoid unnecessary configuration warnings
+ (Kjell Ahlstedt)
+* Meson build: Re-organize warnings-related compiler flags for MSVC
+ (Chun-wei Fan) Merge request !23
+* Autotools build: Add --disable-deprecated-api
+* Fix build with -Dbuild-deprecated-api=false
+ (Kjell Ahlstedt) Issue #29 (bbhtt)
+
+
1.14.3 (stable):
Build:
diff --git a/configure.ac b/configure.ac
index 74202d4..e2c169d 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([cairomm], [1.14.3],
+AC_INIT([cairomm], [1.14.4],
[https://gitlab.freedesktop.org/cairo/cairomm/-/issues],
[cairomm], [http://www.cairographics.org/cairomm/])
AC_PREREQ([2.62])
diff --git a/meson.build b/meson.build
index f84658a..54b4995 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of cairomm.
project('cairomm', 'cpp',
- version: '1.14.3',
+ version: '1.14.4',
license: 'LGPLv2+',
default_options: [
'cpp_std=c++11',