diff options
author | Akira TAGOH <akira@tagoh.org> | 2025-07-02 04:46:34 +0000 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2025-07-02 04:46:34 +0000 |
commit | 6d0a98982ec351c165c9224c8b7dbdfca3010e47 (patch) | |
tree | 3d1119a17e51ee9d84d77bb8cb0998968b99a5ce | |
parent | 7081d61ea3caddf94f0602f4b0dba82b61e72085 (diff) | |
parent | d0a33543e1ee8c38816db389cc9f9f5dcf29dcd8 (diff) |
Merge branch 'release-2-17-1' into 'main'2.17.1
Release 2.17.1
See merge request fontconfig/fontconfig!448
-rw-r--r-- | NEWS | 11 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | fontconfig/fontconfig.h.in | 2 | ||||
-rw-r--r-- | meson.build | 2 |
4 files changed, 13 insertions, 6 deletions
@@ -1,12 +1,19 @@ Fontconfig Font configuration and customization library - Version 2.17 - 2025-06-27 + Version 2.17.1 + 2025-07-02 Check INSTALL for compilation and installation instructions. Report bugs to https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new. +2.17.1 + +Akira TAGOH (3): + Fix a heap buffer overflow + meson: Add 'noinstall' to default-hinting, default-sub-pixel-rendering, bitmap-conf build options + Bump the libtool version + 2.17 Akira TAGOH (48): diff --git a/configure.ac b/configure.ac index 3f72c10..2d48096 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.17.0],[https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new]) +AC_INIT([fontconfig],[2.17.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])]) @@ -78,7 +78,7 @@ dnl bump revision when fixing bugs dnl bump current and age, reset revision to zero when adding APIs dnl bump current, leave age, reset revision to zero when changing/removing APIS LIBT_CURRENT=17 -LIBT_REVISION=0 +LIBT_REVISION=1 AC_SUBST(LIBT_CURRENT) AC_SUBST(LIBT_REVISION) LIBT_AGE=16 diff --git a/fontconfig/fontconfig.h.in b/fontconfig/fontconfig.h.in index 19432c1..e8944f9 100644 --- a/fontconfig/fontconfig.h.in +++ b/fontconfig/fontconfig.h.in @@ -55,7 +55,7 @@ typedef int FcBool; #define FC_MAJOR 2 #define FC_MINOR 17 -#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 606eb84..e742ea6 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('fontconfig', 'c', - version: '2.17.0', + version: '2.17.1', meson_version : '>= 1.6.1', default_options: [ 'c_std=c11,c99', |