summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkira TAGOH <akira@tagoh.org>2022-02-01 14:25:45 +0900
committerAkira TAGOH <akira@tagoh.org>2022-02-01 14:25:45 +0900
commit53fa8a380152801f8a142a271f0458fb5b6f8381 (patch)
treea5dc569e79eea934bc27189df1f81de5e12b34e0
parent875878efb7ddd57303b75320b4ea10ee2b9cf370 (diff)
Bump version to 2.13.952.13.95
-rw-r--r--README68
-rw-r--r--configure.ac2
-rw-r--r--fontconfig/fontconfig.h2
-rw-r--r--meson.build2
4 files changed, 69 insertions, 5 deletions
diff --git a/README b/README
index 521b07d..b6e37cc 100644
--- a/README
+++ b/README
@@ -1,12 +1,76 @@
Fontconfig
Font configuration and customization library
- Version 2.13.94 (2.14 RC4)
- 2021-06-28
+ Version 2.13.95 (2.14 RC5)
+ 2022-02-01
Check INSTALL for compilation and installation instructions.
Report bugs to https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new.
+2.13.95 (2.14 RC5)
+
+Akira TAGOH (18):
+ Do not set different score to non-string values
+ Enable 11-lcdfilter-default.conf by default
+ Bump the cache version to 8
+ Reflect matching results to binding in FcPattern
+ Fix a memory leak when trying to open a non-existing file
+ Fix score estimation for postscriptname
+ Resolves symlinks against <dir prefix="relative">
+ Add the option to not build fontconfig cache during installation
+ conf.d/60-latin.conf: Make Noto default.
+ Fix some testcase fails for 14c265a1
+ Fix the issue fail to obtain the style name
+ Apply the change made by 23e46d1 again
+ Initialize variable
+ Add more description for fc-conflist.1 and FcConfigFileInfoIterInit.3
+ Update CaseFolding.txt to Unicode 14
+ Add an user font directory for Win32 to the default font path
+ Add test/wrapper-script.sh to the archive
+ Fix possible memory leaks in FcPatternObjectAddWithBinding
+
+Alex Richardson (3):
+ fcint: add casts to allow building with stricter compilers
+ Add support for C11 stdatomic atomics
+ FcCharSetPutLeaf(): Fix missing move of new_leaves contents
+
+Behdad Esfahbod (1):
+ If a varfont has 'opsz' axis, set FC_SIZE on default instant pattern
+
+Ben Wagner (6):
+ Add memory order constraints to C11 atomics
+ Free local FcCache lock on contention
+ Extend test thread args lifetime
+ Fix warning about os2->achVendID cannot be NULL
+ Back FcSerialize with open addressing hash table.
+ Actually skip leading spaces in style name
+
+Francesco Pretto (1):
+ WIN32: Fix pGetSystemWindowsDirectory found initialized during FcConfigParseAndLoadFromMemory
+
+Mehdi Sabwat (1):
+ fcstat: add support for wasm-emscripten
+
+Nirbheek Chauhan (1):
+ meson: Remove summary() from version_compare() block
+
+Pierre Ducroquet (5):
+ Add a configuration to switch to monospace if spacing=100 is requested
+ Reference the new configuration file
+ Remove configuration file from POTFILES
+ It seems this qual doesn't work on integers
+ Always add the family name from spacing=100
+
+Ryan Gonzalez (1):
+ Ensure config.h is always included before stdlib headers
+
+Ryan Schmidt (5):
+ Avoid PCRE syntax when using grep
+ Remove Bugzilla references
+ Fix run-test.sh to work with BSD mktemp
+ Restore fcatomic compatibility with Mac OS X 10.4.
+ Fix FC_DEFAULT_FONTS on macOS and with BSD sed
+
2.13.94 (2.14 RC4)
Akira TAGOH (10):
diff --git a/configure.ac b/configure.ac
index 433db7b..7d96fa5 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.13.94], [https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new])
+AC_INIT([fontconfig], [2.13.95], [https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new])
AM_INIT_AUTOMAKE([1.11 parallel-tests dist-xz])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
diff --git a/fontconfig/fontconfig.h b/fontconfig/fontconfig.h
index 790f83d..5599628 100644
--- a/fontconfig/fontconfig.h
+++ b/fontconfig/fontconfig.h
@@ -53,7 +53,7 @@ typedef int FcBool;
#define FC_MAJOR 2
#define FC_MINOR 13
-#define FC_REVISION 94
+#define FC_REVISION 95
#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
diff --git a/meson.build b/meson.build
index 89be258..bddb84d 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('fontconfig', 'c',
- version: '2.13.94',
+ version: '2.13.95',
meson_version : '>= 0.56.0',
default_options: [ 'buildtype=debugoptimized'],
)