diff options
author | Keith Packard <keithp@keithp.com> | 2005-03-08 23:39:02 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2005-03-08 23:39:02 +0000 |
commit | d49dde9f900777f8482290dbafc6acb52a2b9432 (patch) | |
tree | ec7d2869d8e11728b01bab4b349bb925ae5a4195 | |
parent | 76a8dfa3378fc1bd0397a95f2da56d5c6fb2540c (diff) |
Update for 2.3.1fc-2_3_1
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | README | 12 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | fontconfig/fontconfig.h | 2 |
4 files changed, 19 insertions, 4 deletions
@@ -1,3 +1,10 @@ +2005-03-08 Keith Packard <keithp@keithp.com> + + * README: + * configure.in: + * fontconfig/fontconfig.h: + Update for 2.3.1 + 2005-03-05 Keith Packard <keithp@keithp.com> * src/fcfreetype.c: (addtag), (FcFontCapabilities): @@ -1,11 +1,19 @@ Fontconfig Font configuration and customization library - Version 2.3.0 - 2005-3-1 + Version 2.3.1 + 2005-3-8 Check INSTALL for compilation and installation instructions. Report bugs to https://bugs.freedesktop.org in the fontconfig module. +2.3.1 + +Be more careful about broken GSUB/GPOS tables (Manish Singh) +Include debian packaging stuff in CVS (Josselin Mouette) +Add more conf.d examples (Keith Packard) +Make manuals build again (Keith Packard) +Johap -> Johab (Funda Wang) + 2.3.0 Fix memory leak of patterns rejected by configuration (#2518) diff --git a/configure.in b/configure.in index 35f169d..af7e8df 100644 --- a/configure.in +++ b/configure.in @@ -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 -AM_INIT_AUTOMAKE(fontconfig, 2.3.0) +AM_INIT_AUTOMAKE(fontconfig, 2.3.1) AM_MAINTAINER_MODE dnl libtool versioning diff --git a/fontconfig/fontconfig.h b/fontconfig/fontconfig.h index 2e50ffe..0b99947 100644 --- a/fontconfig/fontconfig.h +++ b/fontconfig/fontconfig.h @@ -40,7 +40,7 @@ typedef int FcBool; #define FC_MAJOR 2 #define FC_MINOR 3 -#define FC_REVISION 0 +#define FC_REVISION 1 #define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION)) |