diff options
author | Akira TAGOH <akira@tagoh.org> | 2012-07-17 11:36:01 +0900 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2012-07-17 11:36:01 +0900 |
commit | 92bad770e505ec8683aad2e6e063232843734ece (patch) | |
tree | 61ce46d1c1c2f36524e6e8a91cc11980a93a9e0a | |
parent | f513f53347ae943a03192e83f7a6d7c40bcdfd5d (diff) |
Bump version to 2.10
-rw-r--r-- | README | 11 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | fontconfig/fontconfig.h | 4 |
3 files changed, 13 insertions, 4 deletions
@@ -1,12 +1,21 @@ Fontconfig Font configuration and customization library - Version 2.9.92 (2.10 RC2) + Version 2.10.0 2012-03-11 Check INSTALL for compilation and installation instructions. Report bugs to https://bugs.freedesktop.org in the fontconfig module. +2.10.0 + +Akira TAGOH (5): + Bug 34266 - configs silently ignored if libxml2 doesn't support SAX1 interface + Update CaseFolding.txt to Unicode 6.1 + Fix a build fail with gcc 2.95, not supporting the flexible array members. + Bump libtool revision + Update INSTALL + 2.9.92 (2.10 RC2) Akira TAGOH (9): diff --git a/configure.ac b/configure.ac index 32e886e..79f9597 100644 --- a/configure.ac +++ b/configure.ac @@ -34,7 +34,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 -AM_INIT_AUTOMAKE(fontconfig, 2.9.92) +AM_INIT_AUTOMAKE(fontconfig, 2.10) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) dnl libtool versioning diff --git a/fontconfig/fontconfig.h b/fontconfig/fontconfig.h index 8980b31..41af470 100644 --- a/fontconfig/fontconfig.h +++ b/fontconfig/fontconfig.h @@ -51,8 +51,8 @@ typedef int FcBool; */ #define FC_MAJOR 2 -#define FC_MINOR 9 -#define FC_REVISION 92 +#define FC_MINOR 10 +#define FC_REVISION 0 #define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION)) |