This commit is contained in:
Behdad Esfahbod 2018-08-01 14:51:51 -07:00
parent 13f4c137c6
commit 44d1fb37ef
4 changed files with 12 additions and 4 deletions

8
NEWS
View File

@ -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
====================================

View File

@ -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/])

View File

@ -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,

View File

@ -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) <= \