]> git.wh0rd.org - fontconfig.git/commitdiff
Update for 2.3.0 fc-2_3_0
authorKeith Packard <keithp@keithp.com>
Tue, 1 Mar 2005 20:48:36 +0000 (20:48 +0000)
committerKeith Packard <keithp@keithp.com>
Tue, 1 Mar 2005 20:48:36 +0000 (20:48 +0000)
ChangeLog
README
configure.in
fontconfig/fontconfig.h

index c1c9059a15c872d005566e0dbf2a355164239ae3..7caf76a8951fb95954c0d426e6c9f50b8694f959 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-03-01  Keith Packard  <keithp@keithp.com>
+
+       * README:
+       * configure.in:
+       * fontconfig/fontconfig.h:
+       Update for 2.3.0
+
 2005-03-01  Keith Packard  <keithp@keithp.com>
 
        * doc/Makefile.am:
diff --git a/README b/README
index d5d0f6465ec4cd28eda28f858b91d07907a1f08a..10db69c15ae364a6413b70ba656c47ec765f71f8 100644 (file)
--- a/README
+++ b/README
@@ -1,11 +1,21 @@
                        Fontconfig
        Font configuration and customization library
-                     Version 2.2.99
-                        2005-1-28
+                     Version 2.3.0
+                        2005-3-1
 
 Check INSTALL for compilation and installation instructions.
 Report bugs to https://bugs.freedesktop.org in the fontconfig module.
 
+2.3.0
+
+Fix memory leak of patterns rejected by configuration (#2518)
+
+Create prototype /etc/fonts/conf.d directory and populate it with a few
+sample files.  These samples are unused as the file names don't start with
+numbers.
+
+Update documentation.
+
 2.2.99
 
 Verify cache for FC_FILE and FC_FAMILY in every entry (#2219)
index 6d9ca65140b5b4412c29c718d5e89432e0f7cac0..35f169d3938f314231281528da0fc9cdff9c4d00 100644 (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
-AM_INIT_AUTOMAKE(fontconfig, 2.2.99)
+AM_INIT_AUTOMAKE(fontconfig, 2.3.0)
 AM_MAINTAINER_MODE
 
 dnl libtool versioning
index a07fb71b824d7001c2e8a407c03a92abb58b9a55..2e50ffe1b6b28160c7b9f227a917968710226b6f 100644 (file)
@@ -39,8 +39,8 @@ typedef int           FcBool;
  */
 
 #define FC_MAJOR       2
-#define FC_MINOR       2
-#define FC_REVISION    99
+#define FC_MINOR       3
+#define FC_REVISION    0
 
 #define FC_VERSION     ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))