summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2005-03-01 20:48:36 +0000
committerKeith Packard <keithp@keithp.com>2005-03-01 20:48:36 +0000
commit4afc00ca02bb3f49fe214463e0f194486f438b70 (patch)
tree61bce3347b06d1a5cba252f827864f0c7ae16acb
parent0c009d2b6df523bba7a10ad148287bed2df9ebd6 (diff)
Update for 2.3.0fc-2_3_0fc_2-3
-rw-r--r--ChangeLog7
-rw-r--r--README14
-rw-r--r--configure.in2
-rw-r--r--fontconfig/fontconfig.h4
4 files changed, 22 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index c1c9059..7caf76a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
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:
Generate and install PDF versions of the manuals
diff --git a/README b/README
index d5d0f64..10db69c 100644
--- 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)
diff --git a/configure.in b/configure.in
index 6d9ca65..35f169d 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.2.99)
+AM_INIT_AUTOMAKE(fontconfig, 2.3.0)
AM_MAINTAINER_MODE
dnl libtool versioning
diff --git a/fontconfig/fontconfig.h b/fontconfig/fontconfig.h
index a07fb71..2e50ffe 100644
--- a/fontconfig/fontconfig.h
+++ b/fontconfig/fontconfig.h
@@ -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))