diff --git a/NEWS b/NEWS index 02ff93eaf..04fbe1364 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +Overview of changes leading to 2.6.7 +Wednesday, June 3, 2020 +==================================== +- Update to Unicode 13.0.0. +- Fix hb_ot_layout_get_ligature_carets for fonts without lcar table, it was + completely broken for all the other fonts since 2.1.2. +- As a part of our migration to meson, this release will be the last one + to provide cmake port files but autotools still is our main build system. + There is a possibility that the next version or the after be released + using meson. + + Overview of changes leading to 2.6.6 Tuesday, May 12, 2020 ==================================== diff --git a/configure.ac b/configure.ac index 5fc703a09..3af266b5f 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.64]) AC_INIT([HarfBuzz], - [2.6.6], + [2.6.7], [https://github.com/harfbuzz/harfbuzz/issues/new], [harfbuzz], [http://harfbuzz.org/]) diff --git a/meson.build b/meson.build index 15144e9e8..65d319242 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('harfbuzz', 'c', 'cpp', meson_version: '>= 0.53.0', default_options : ['cpp_std=c++11'], - version: '2.6.6') + version: '2.6.7') warning('Meson is not our main build system yet, don\'t use it for packaging HarfBuzz for *nix distros for now') diff --git a/src/hb-common.h b/src/hb-common.h index 3d963f445..a97a5f5a0 100644 --- a/src/hb-common.h +++ b/src/hb-common.h @@ -368,7 +368,7 @@ typedef enum /*12.0*/HB_SCRIPT_WANCHO = HB_TAG ('W','c','h','o'), /* - * Since REPLACEME + * Since 2.6.7 */ /*13.0*/HB_SCRIPT_CHORASMIAN = HB_TAG ('C','h','r','s'), /*13.0*/HB_SCRIPT_DIVES_AKURU = HB_TAG ('D','i','a','k'), diff --git a/src/hb-version.h b/src/hb-version.h index 0abec8ded..f3ac9b0ac 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 6 -#define HB_VERSION_MICRO 6 +#define HB_VERSION_MICRO 7 -#define HB_VERSION_STRING "2.6.6" +#define HB_VERSION_STRING "2.6.7" #define HB_VERSION_ATLEAST(major,minor,micro) \ ((major)*10000+(minor)*100+(micro) <= \