diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2018-08-01 14:51:51 -0700 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2018-08-01 14:51:51 -0700 |
commit | 44d1fb37efa20852cc466c0f0bba95dbd24ce288 (patch) | |
tree | 641927419447c9c14faa417d3de8363350021b4b | |
parent | 13f4c137c686aed5c2888b5c47d9f16892be0d5e (diff) |
1.8.51.8.5
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/hb-ot-layout.cc | 2 | ||||
-rw-r--r-- | src/hb-version.h | 4 |
4 files changed, 12 insertions, 4 deletions
@@ -1,3 +1,11 @@ +Overview of changes leading to 1.8.5 +Wednesday, August 1, 2018 +==================================== +- Major Khmer shaper improvements to better match Microsoft. +- Indic bug fixes. +- Internal improvements to atomic operations. + + Overview of changes leading to 1.8.4 Tuesday, July 17, 2018 ==================================== diff --git a/configure.ac b/configure.ac index 0dd70e68..c439f54d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.64]) AC_INIT([HarfBuzz], - [1.8.4], + [1.8.5], [https://github.com/harfbuzz/harfbuzz/issues/new], [harfbuzz], [http://harfbuzz.org/]) diff --git a/src/hb-ot-layout.cc b/src/hb-ot-layout.cc index 1cb0c3ad..c790c3ce 100644 --- a/src/hb-ot-layout.cc +++ b/src/hb-ot-layout.cc @@ -765,7 +765,7 @@ _hb_ot_layout_collect_features_languages (hb_face_t *face, /** * hb_ot_layout_collect_features: * - * Since: REPLACEME + * Since: 1.8.5 **/ void hb_ot_layout_collect_features (hb_face_t *face, diff --git a/src/hb-version.h b/src/hb-version.h index 09e3c2c0..c5092c78 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 4 +#define HB_VERSION_MICRO 5 -#define HB_VERSION_STRING "1.8.4" +#define HB_VERSION_STRING "1.8.5" #define HB_VERSION_ATLEAST(major,minor,micro) \ ((major)*10000+(minor)*100+(micro) <= \ |