From d160d9389cb4c5b15ebea9b41eb74018c4358924 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Wed, 12 Jul 2023 08:27:25 +0300 Subject: [PATCH] 8.0.1 --- NEWS | 11 +++++++++++ configure.ac | 2 +- meson.build | 2 +- src/hb-version.h | 4 ++-- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 5b82163de..1454a2189 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,14 @@ +Overview of changes leading to 8.0.1 +Wednesday, July 12, 2023 +==================================== +- Build fix on 32-bit arm. + +- More speed optimizations: + - 60% speedup in retaingids subsetting SourceHanSans-VF. + - 38% speed up in subsetting (beyond-64k) mega-merged Noto. + - 16% speed up in retain-gid (used for IFT) subsetting of NotoSansCJKkr. + + Overview of changes leading to 8.0.0 Sunday, July 9, 2023 ==================================== diff --git a/configure.ac b/configure.ac index a2d532ed6..3de964bc5 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.64]) AC_INIT([HarfBuzz], - [8.0.0], + [8.0.1], [https://github.com/harfbuzz/harfbuzz/issues/new], [harfbuzz], [http://harfbuzz.org/]) diff --git a/meson.build b/meson.build index 284701222..c3062c72f 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('harfbuzz', 'c', 'cpp', meson_version: '>= 0.55.0', - version: '8.0.0', + version: '8.0.1', default_options: [ 'cpp_eh=none', # Just to support msvc, we are passing -fno-exceptions also anyway 'cpp_rtti=false', # Just to support msvc, we are passing -fno-rtti also anyway diff --git a/src/hb-version.h b/src/hb-version.h index 9b27acf59..c29012232 100644 --- a/src/hb-version.h +++ b/src/hb-version.h @@ -53,14 +53,14 @@ HB_BEGIN_DECLS * * The micro component of the library version available at compile-time. */ -#define HB_VERSION_MICRO 0 +#define HB_VERSION_MICRO 1 /** * HB_VERSION_STRING: * * A string literal containing the library version available at compile-time. */ -#define HB_VERSION_STRING "8.0.0" +#define HB_VERSION_STRING "8.0.1" /** * HB_VERSION_ATLEAST: