summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2018-08-14 10:59:34 -0700
committerBehdad Esfahbod <behdad@behdad.org>2018-08-14 10:59:34 -0700
commit63be5dcdde61275822d931b2924425478bc1dac1 (patch)
tree346c904ee9cdb7117e412a4baa2708c004b6947c
parentc9a22fa124310c98c73b8d7b495ed354542a75de (diff)
1.8.81.8.8
-rw-r--r--NEWS18
-rw-r--r--configure.ac2
-rw-r--r--src/hb-version.h4
3 files changed, 21 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 87907ca8..3ae857ef 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,21 @@
+Overview of changes leading to 1.8.8
+Tuesday, August 14, 2018
+====================================
+- Fix hb-icu crash on architectures where compare_exchange_weak() can
+ fail falsely. This bug was introduced in 1.8.4.
+ https://bugs.chromium.org/p/chromium/issues/detail?id=873568
+- More internal refactoring of atomic operations and singletons.
+- API changes:
+ The following functions do NOT reference their return value before
+ returning:
+ * hb_unicode_funcs_get_default()
+ * hb_glib_get_unicode_funcs()
+ * hb_icu_get_unicode_funcs()
+ This is consistent with their naming ("get", instead of "reference")
+ as well as how they are used in the wild (ie. no one calls destroy()
+ on their return value.)
+
+
Overview of changes leading to 1.8.7
Wednesday, August 8, 2018
====================================
diff --git a/configure.ac b/configure.ac
index a32b8632..55cc12b3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ([2.64])
AC_INIT([HarfBuzz],
- [1.8.7],
+ [1.8.8],
[https://github.com/harfbuzz/harfbuzz/issues/new],
[harfbuzz],
[http://harfbuzz.org/])
diff --git a/src/hb-version.h b/src/hb-version.h
index 32d95f80..e0816d1e 100644
--- a/src/hb-version.h
+++ b/src/hb-version.h
@@ -38,9 +38,9 @@ HB_BEGIN_DECLS
#define HB_VERSION_MAJOR 1
#define HB_VERSION_MINOR 8
-#define HB_VERSION_MICRO 7
+#define HB_VERSION_MICRO 8
-#define HB_VERSION_STRING "1.8.7"
+#define HB_VERSION_STRING "1.8.8"
#define HB_VERSION_ATLEAST(major,minor,micro) \
((major)*10000+(minor)*100+(micro) <= \