[HarfBuzz] harfbuzz: Branch 'master' - 2 commits

Behdad Esfahbod behdad at kemper.freedesktop.org
Sat Nov 17 01:01:25 UTC 2018


 NEWS                |    6 ++++++
 configure.ac        |    2 +-
 src/hb-open-type.hh |    2 +-
 src/hb-version.h    |    4 ++--
 4 files changed, 10 insertions(+), 4 deletions(-)

New commits:
commit e3a1a8350a6a7933b0a100194985f4425ab9de19
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Fri Nov 16 16:53:25 2018 -0800

    2.1.3

diff --git a/NEWS b/NEWS
index d72ea3db..9bfe99a2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+Overview of changes leading to 2.1.3
+Friday, November 16, 2018
+====================================
+- Fix AAT 'mort' shaping, which was broken in 2.1.2
+
+
 Overview of changes leading to 2.1.2
 Friday, November 16, 2018
 ====================================
diff --git a/configure.ac b/configure.ac
index 0db1fd0d..95ab48f8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
 AC_PREREQ([2.64])
 AC_INIT([HarfBuzz],
-        [2.1.2],
+        [2.1.3],
         [https://github.com/harfbuzz/harfbuzz/issues/new],
         [harfbuzz],
         [http://harfbuzz.org/])
diff --git a/src/hb-version.h b/src/hb-version.h
index a18c897c..fb9f8f30 100644
--- a/src/hb-version.h
+++ b/src/hb-version.h
@@ -38,9 +38,9 @@ HB_BEGIN_DECLS
 
 #define HB_VERSION_MAJOR 2
 #define HB_VERSION_MINOR 1
-#define HB_VERSION_MICRO 2
+#define HB_VERSION_MICRO 3
 
-#define HB_VERSION_STRING "2.1.2"
+#define HB_VERSION_STRING "2.1.3"
 
 #define HB_VERSION_ATLEAST(major,minor,micro) \
 	((major)*10000+(minor)*100+(micro) <= \
commit 9714e114b88893bd962b1bcf36382bdacbc4866c
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Fri Nov 16 16:52:42 2018 -0800

    Fix recent commits

diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh
index c77c25fa..b1fcd687 100644
--- a/src/hb-open-type.hh
+++ b/src/hb-open-type.hh
@@ -347,7 +347,7 @@ struct UnsizedArrayOf
   }
   inline Type& operator [] (unsigned int i)
   {
-    const Type *p = &arrayZ[i];
+    Type *p = &arrayZ[i];
     if (unlikely (p < arrayZ)) return Crap (Type); /* Overflowed. */
     return *p;
   }


More information about the HarfBuzz mailing list