pull/2399/head 2.6.6
Ebrahim Byagowi 5 years ago
parent 57d67f1775
commit 42025680cb
  1. 7
      NEWS
  2. 2
      configure.ac
  3. 2
      meson.build
  4. 4
      src/hb-version.h

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

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

@ -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')

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

Loading…
Cancel
Save