This commit is contained in:
Ebrahim Byagowi 2020-05-12 00:14:33 +04:30
parent 57d67f1775
commit 42025680cb
4 changed files with 11 additions and 4 deletions

7
NEWS
View File

@ -1,3 +1,10 @@
Overview of changes leading to 2.6.6
Tuesday, May 12, 2020
====================================
- A fix in AAT kerning for Geeza Pro.
- Better support for resource fork fonts on macOS.
Overview of changes leading to 2.6.5
Friday, April 17, 2020
====================================

View File

@ -1,6 +1,6 @@
AC_PREREQ([2.64])
AC_INIT([HarfBuzz],
[2.6.5],
[2.6.6],
[https://github.com/harfbuzz/harfbuzz/issues/new],
[harfbuzz],
[http://harfbuzz.org/])

View File

@ -1,7 +1,7 @@
project('harfbuzz', 'c', 'cpp',
meson_version: '>= 0.47.0',
default_options : ['cpp_std=c++11'],
version: '2.6.5')
version: '2.6.6')
warning('Meson is not our main build system yet, don\'t use it for packaging HarfBuzz for *nix distros for now')

View File

@ -38,9 +38,9 @@ HB_BEGIN_DECLS
#define HB_VERSION_MAJOR 2
#define HB_VERSION_MINOR 6
#define HB_VERSION_MICRO 5
#define HB_VERSION_MICRO 6
#define HB_VERSION_STRING "2.6.5"
#define HB_VERSION_STRING "2.6.6"
#define HB_VERSION_ATLEAST(major,minor,micro) \
((major)*10000+(minor)*100+(micro) <= \