2.5.2
authorBehdad Esfahbod <behdad@behdad.org>
Thu, 20 Jun 2019 18:57:19 +0000 (11:57 -0700)
committerBehdad Esfahbod <behdad@behdad.org>
Thu, 20 Jun 2019 18:57:19 +0000 (11:57 -0700)
NEWS
configure.ac
src/hb-version.h

diff --git a/NEWS b/NEWS
index 5192973..0835378 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,15 @@
+Overview of changes leading to 2.5.2
+Thursday, June 20, 2019
+====================================
+- More hb-config.hh facilities to shrink library size, namely when built as
+  HB_TINY.
+- New documentation of custom configurations in CONFIG.md.
+- Fix build on gcc 4.8.  That's supported again.
+- Universal Shaping Engine improvements thanks to David Corbett.
+- API Changes: Undeprecate some horizontal-kerning API and re-enable in hb-ft,
+  such that Type1 fonts will continue kerning.
+
+
 Overview of changes leading to 2.5.1
 Friday, May 31, 2019
 ====================================
index 958bd2d..426b850 100644 (file)
@@ -1,6 +1,6 @@
 AC_PREREQ([2.64])
 AC_INIT([HarfBuzz],
-        [2.5.1],
+        [2.5.2],
         [https://github.com/harfbuzz/harfbuzz/issues/new],
         [harfbuzz],
         [http://harfbuzz.org/])
index 1eca37a..10b826f 100644 (file)
@@ -38,9 +38,9 @@ HB_BEGIN_DECLS
 
 #define HB_VERSION_MAJOR 2
 #define HB_VERSION_MINOR 5
-#define HB_VERSION_MICRO 1
+#define HB_VERSION_MICRO 2
 
-#define HB_VERSION_STRING "2.5.1"
+#define HB_VERSION_STRING "2.5.2"
 
 #define HB_VERSION_ATLEAST(major,minor,micro) \
        ((major)*10000+(minor)*100+(micro) <= \