NEWS | 30 ++++++++++++++++++++++++++++-- configure.ac | 2 +- fontconfig/fontconfig.h | 2 +- meson.build | 2 +- 4 files changed, 31 insertions(+), 5 deletions(-) New commits: commit c1bdf4f542f56d3b5035ec2806ed7a685f831c1b Merge: 862af1f 9992235 Author: Akira TAGOH <akira@xxxxxxxxx> Date: Fri Apr 11 06:47:01 2025 +0000 Merge branch 'release-2-16-2' into 'main' Bump version to 2.16.2 See merge request fontconfig/fontconfig!382 commit 99922350bca231fa5ec401b36871e7561238de34 Author: Akira TAGOH <akira@xxxxxxxxx> Date: Fri Apr 11 14:49:58 2025 +0900 Bump version to 2.16.2 diff --git a/NEWS b/NEWS index 12c8102..a531188 100644 --- a/NEWS +++ b/NEWS @@ -1,12 +1,38 @@ Fontconfig Font configuration and customization library - Version 2.16.1 - 2025-03-13 + Version 2.16.2 + 2025-04-11 Check INSTALL for compilation and installation instructions. Report bugs to https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new. +2.16.2 + +Akira TAGOH (12): + meson: do not require libintl if nls feature is disabled + ci: Add back Android build in a common way + ci: drop Language to make sure they are applied as default style + ci: Change the default build system to meson + ci: Stop on fail anyway + ci: default to clean-build + ci: detect OS from os-release if no FC_DISTRO_NAME is set + ci: add missing dependency of pytest + ci: Set more timeout for pytest + ci: fix too many open files on test + ci: add missing dependency of requests + meson: Use Requires.private instead of Requires + +Dominik Röttsches (2): + Upgrade bindgen in Fontations enabled Rust builds + [Fontations] Add internal PatternBuilder abstraction + +Kacper Michajłow (1): + meson: don't force build of a shared library + +Thomas Devoogdt (1): + meson.build: define a 'c' standard for the project (C99 and C11) + 2.16.1 Akira TAGOH (10): diff --git a/configure.ac b/configure.ac index 12c250c..eb7b712 100644 --- a/configure.ac +++ b/configure.ac @@ -33,7 +33,7 @@ dnl This is the package version number, not the shared library dnl version. This same version number must appear in fontconfig/fontconfig.h dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's dnl not possible to extract the version number here from fontconfig.h -AC_INIT([fontconfig],[2.16.1],[https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new]) +AC_INIT([fontconfig],[2.16.2],[https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new]) AM_INIT_AUTOMAKE([1.11 parallel-tests dist-xz foreign]) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) diff --git a/fontconfig/fontconfig.h b/fontconfig/fontconfig.h index 30fd890..bd04884 100644 --- a/fontconfig/fontconfig.h +++ b/fontconfig/fontconfig.h @@ -55,7 +55,7 @@ typedef int FcBool; #define FC_MAJOR 2 #define FC_MINOR 16 -#define FC_REVISION 1 +#define FC_REVISION 2 #define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION)) diff --git a/meson.build b/meson.build index 8952d28..c7c5406 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('fontconfig', 'c', - version: '2.16.1', + version: '2.16.2', meson_version : '>= 1.6.0', default_options: [ 'c_std=c11,c99',