NEWS | 24 ++++++++++++++++++++++-- configure.ac | 2 +- fontconfig/fontconfig.h | 2 +- meson.build | 2 +- 4 files changed, 25 insertions(+), 5 deletions(-) New commits: commit fdfc3445d1cc9c1c7e587fb2a1287871de16faf9 Merge: 9fa8afb 11bc578 Author: Akira TAGOH <akira@xxxxxxxxx> Date: Thu Mar 13 11:16:47 2025 +0000 Merge branch 'release-2-16-1' into 'main' Bump version to 2.16.1 See merge request fontconfig/fontconfig!368 commit 11bc578fb40824ab02685da5ca32fb0070fe4f86 Author: Akira TAGOH <akira@xxxxxxxxx> Date: Thu Mar 13 13:28:36 2025 +0900 Bump version to 2.16.1 diff --git a/NEWS b/NEWS index e6cfbac..12c8102 100644 --- a/NEWS +++ b/NEWS @@ -1,12 +1,32 @@ Fontconfig Font configuration and customization library - Version 2.16 - 2025-01-17 + Version 2.16.1 + 2025-03-13 Check INSTALL for compilation and installation instructions. Report bugs to https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new. +2.16.1 + +Akira TAGOH (10): + meson: create fc_cachedir at the installation time + meson: set WORDS_BIGENDIAN + ci: get back MinGW build to rawhide + meson: make sure config.h contains config-fixups.h for OSX + Reformatting with clang-format + ci: Add a workflow to check the coding style + ci: workaround conflict between systemd and systemd-standalone-sysusers + conf.d: Add Adwaita Sans as system-ui + ci: disable job tentatively + ci: Add a release workflow + +Dominik Röttsches (1): + [Fontations] Allow linkage to internals in tests + +Thomas Devoogdt (1): + meson.build: explicitly check for pthread support + 2.16 Akira TAGOH (69): diff --git a/configure.ac b/configure.ac index 21aeb08..12c250c 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.0],[https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new]) +AC_INIT([fontconfig],[2.16.1],[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 5f5281b..30fd890 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 0 +#define FC_REVISION 1 #define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION)) diff --git a/meson.build b/meson.build index d9ed3ea..656ed95 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('fontconfig', 'c', - version: '2.16.0', + version: '2.16.1', meson_version : '>= 1.6.0', default_options: [ 'buildtype=debugoptimized', ] )