Bump version to 2.12.92

This commit is contained in:
Akira TAGOH 2018-01-04 20:42:34 +09:00
parent 3642d71724
commit d7d40b5aa8
3 changed files with 33 additions and 4 deletions

33
README
View File

@ -1,12 +1,41 @@
Fontconfig
Font configuration and customization library
Version 2.12.91 (2.13 RC1)
2017-12-14
Version 2.12.92 (2.13 RC2)
2018-01-04
Check INSTALL for compilation and installation instructions.
Report bugs to https://bugs.freedesktop.org in the fontconfig module.
2.12.92 (2.13 RC2)
Akira TAGOH (13):
cleanup files
Update .uuid only when -r is given but not -f.
Returns false if key is already available in the table
Add missing doc of FcDirCacheCreateUUID
Replace uuid in the table properly when -r
Add a test case for uuid creation
Do not update mtime with creating .uuid
Disable uuid related code on Win32
Try to get current instance of FcConfig as far as possible
do not check the existence of itstool on win32
Fix the mis-ordering of ruleset evaluation in a file with include element
Fix compiler warnings
Add FcReadLink to wrap up readlink impl.
Alexander Larsson (1):
fchash: Fix replace
Behdad Esfahbod (7):
Don't crash
Remove a debug abort()
Minor
Set font-variations settings for standard axes in variable fonts
Let pattern FC_FONT_VARIATIONS override standard axis variations
Put back accidentally removed code
Add FcWeightTo/FromOpenTypeDouble()
2.12.91 (2.13 RC1)
Akira TAGOH (37):

View File

@ -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.12.91], [https://bugs.freedesktop.org/enter_bug.cgi?product=fontconfig])
AC_INIT([fontconfig], [2.12.92], [https://bugs.freedesktop.org/enter_bug.cgi?product=fontconfig])
AM_INIT_AUTOMAKE([1.11 parallel-tests dist-bzip2])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])

View File

@ -53,7 +53,7 @@ typedef int FcBool;
#define FC_MAJOR 2
#define FC_MINOR 12
#define FC_REVISION 91
#define FC_REVISION 92
#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))