]> git.wh0rd.org - fontconfig.git/commitdiff
Update version to 2.2.3 Add release comments to INSTALL fc-2_2_3
authorKeith Packard <keithp@keithp.com>
Wed, 30 Jun 2004 18:53:39 +0000 (18:53 +0000)
committerKeith Packard <keithp@keithp.com>
Wed, 30 Jun 2004 18:53:39 +0000 (18:53 +0000)
ChangeLog
INSTALL
README
configure.in
fontconfig/fontconfig.h

index fbc254052c3c36c67d1fba0227142a2d75f8971a..ead1c67999d78de06b80ab2dc46ec206ba876e42 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2004-06-30  Keith Packard  <keithp@keithp.com>
+
+       * INSTALL:
+       * README:
+       * configure.in:
+       * fontconfig/fontconfig.h:
+       Update version to 2.2.3
+       Add release comments to INSTALL
+
 2004-06-30  Keith Packard  <keithp@keithp.com>
 
        Provided by: Lubos Lunak <l.lunak@suse.cz>
diff --git a/INSTALL b/INSTALL
index 86cf4f949c0488ce0f7e1383f04f8ef136c3af2d..5f511bc5840c20737087031efce46de89a015cb2 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -7,3 +7,28 @@ This should generate valid Makefiles, then:
        $ make
        $ make install
 
+If you're going to package fontconfig for release, there are several
+important steps:
+
+ 1.    Update the version numbers
+               configure.in
+               fontconfig/fontconfig.h
+ 2.    Fix the README
+               Change version number
+               Set the date
+ 3.    Commit those changes
+ 4.    rebuild the configuration files with autogen.sh
+               sh autogen.sh --sysconfdir=/etc --prefix=/usr --mandir=/usr/share/man
+ 5.    make distcheck
+ 6.    tag the tree
+               cvs tag fc-2_2_xx
+ 7.    Split out the ChangeLog into ChangeLog-2.2.xx with
+       the changes since the previous release
+ 8.    Copy ChangeLog-2.2.xx and fontconfig-2.2.xx.tar.gz to
+       freedesktop.org:~fontconfig/public_html/release
+ 9.    Update the Fontconfig Devel wiki page
+       http://freedesktop.org/Software/FontconfigDevel
+10.    Compute md5sums for release files:
+               md5sum fontconfig-2.2.xx.tar.gz ChangeLog-2.2.xx
+11.    Post a note to fontconfig@fontconfig.org.  Include the md5sums.
+       gpg sign the message.
diff --git a/README b/README
index 8f7d2578260416423973af67d80a83b5143c36f6..23e17dc9d715c79fe0c5a6522fcd341f9d1c1574 100644 (file)
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
                        Fontconfig
        Font configuration and customization library
-                     Version 2.2.2
-                        2004-3-10
+                     Version 2.2.3
+                        2004-6-30
 
 This is the third public release of fontconfig, a font configuration and
 customization library.  Fontconfig is designed to locate fonts within the
@@ -11,6 +11,13 @@ Fontconfig is not a rasterization library, nor does it impose a particular
 rasterization library on the application.  The X-specific library
 'Xft' uses fontconfig along with freetype to specify and rasterize fonts.
 
+Version 2.2.3
+
++ Merge Windows changes from HEAD (Tor Lillqvist)
++ Merge fix for bug #387 from HEAD (Pedro Gimeno)
++ Merge code to handle FreeType changes in y_ppem/height
++ Merge fixes for FcConfigUpToDate (Lubos Lunak)
+
 Version 2.2.2
 
 Update #includes for newer versions of FreeType
index efee75edfe9c1e16451409e453ee073cee8565f7..9244fdfa95d2ae06e1806108ac54fc1c8fb79f40 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.2)
+AM_INIT_AUTOMAKE(fontconfig, 2.2.3)
 AM_MAINTAINER_MODE
 
 dnl libtool versioning
index 4988848424a298761722799577711d367eabeb3b..4dd326efdee7ec1255f53756f87bccae7cd2721a 100644 (file)
@@ -40,7 +40,7 @@ typedef int           FcBool;
 
 #define FC_MAJOR       2
 #define FC_MINOR       2
-#define FC_REVISION    2
+#define FC_REVISION    3
 
 #define FC_VERSION     ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))