diff options
author | Akira TAGOH <akira@tagoh.org> | 2013-05-20 17:42:34 +0900 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2013-05-20 17:42:34 +0900 |
commit | 8d54091513c00905457e0ee49ba6ea2c4aacddd7 (patch) | |
tree | b354ba766dc8e41844569cb9e91ca8d86a68b5ad | |
parent | 1cad82cde29ea488ea22541b46ed347d10952557 (diff) |
Bump version to 2.10.932.10.93
-rw-r--r-- | README | 21 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | fontconfig/fontconfig.h | 2 |
3 files changed, 21 insertions, 4 deletions
@@ -1,12 +1,29 @@ Fontconfig Font configuration and customization library - Version 2.10.92 (2.11 RC2) - 2013-03-29 + Version 2.10.93 (2.11 RC3) + 2013-05-20 Check INSTALL for compilation and installation instructions. Report bugs to https://bugs.freedesktop.org in the fontconfig module. +2.10.93 (2.11 RC3) + +Akira TAGOH (10): + Bug 62980 - matching native fonts with even :lang=en + Ensure closing fp on error + Obtain fonts data via FT_Face instead of opening a file directly + Revert the previous change and rework to not export freetype API outside fcfreetype.c + documented FC_HASH and FC_POSTSCRIPT_NAME + Bug 63329 - make check fails: .. contents:: :depth: 2 + Use the glob matching for filename + Bug 63452 - conf.d/README outdated + Fix missing OSAtomicCompareAndSwapPtrBarrier() on Mac OS X 10.4 + Bug 63922 - FcFreeTypeQueryFace fails on postscripts fonts loaded from memory + +Sebastian Freundt (1): + build-chain, replace INCLUDES directive by AM_CPPFLAGS + 2.10.92 (2.11 RC2) Akira TAGOH (33): diff --git a/configure.ac b/configure.ac index 7919372..0f129db 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.10.92], [https://bugs.freedesktop.org/enger_bug.cgi?product=fontconfig]) +AC_INIT([fontconfig], [2.10.93], [https://bugs.freedesktop.org/enger_bug.cgi?product=fontconfig]) AM_INIT_AUTOMAKE([1.11 parallel-tests dist-bzip2]) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) diff --git a/fontconfig/fontconfig.h b/fontconfig/fontconfig.h index 361ca4f..422187b 100644 --- a/fontconfig/fontconfig.h +++ b/fontconfig/fontconfig.h @@ -52,7 +52,7 @@ typedef int FcBool; #define FC_MAJOR 2 #define FC_MINOR 10 -#define FC_REVISION 92 +#define FC_REVISION 93 #define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION)) |