summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2022-09-21 14:38:59 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2022-09-21 14:38:59 +0200
commit9dcaeb7af1620ed509bd471a0c8b27aff459178c (patch)
tree846f7a7ed141a57289692859d2a641defe530b70
parentc09b73730d9e26fa0fc7ec3cf80067459963ae62 (diff)
-rwxr-xr-xNEWS13
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
3 files changed, 15 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index c802e67..7e38698 100755
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,16 @@
+1.16.2 (stable):
+
+Build:
+* MSVC build: Support VS2022 builds
+ (Chun-wei Fan) Merge request !20
+* Meson build: When mm-common >= 1.0.4 is used, Perl is not required
+* 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)
+
+
1.16.1 (stable):
Cairo:
diff --git a/configure.ac b/configure.ac
index d224409..4d2a00a 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.16.1],
+AC_INIT([cairomm], [1.16.2],
[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 d47ff59..4522a94 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
# This file is part of cairomm.
project('cairomm', 'cpp',
- version: '1.16.1',
+ version: '1.16.2',
license: 'LGPLv2+',
default_options: [
'cpp_std=c++17',