mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
8.1.1
This commit is contained in:
parent
91c449a64a
commit
1d665c2b52
4 changed files with 12 additions and 4 deletions
8
NEWS
8
NEWS
|
@ -1,3 +1,11 @@
|
|||
Overview of changes leading to 8.1.1
|
||||
Wednesday, August 2, 2023
|
||||
====================================
|
||||
- Fix shaping of contextual rules at the end of string, introduced in 8.1.0
|
||||
- Fix stack-overflow in repacker with malicious fonts.
|
||||
- 30% speed up loading Noto Duployan font.
|
||||
|
||||
|
||||
Overview of changes leading to 8.1.0
|
||||
Tuesday, August 1, 2023
|
||||
====================================
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
AC_PREREQ([2.64])
|
||||
AC_INIT([HarfBuzz],
|
||||
[8.1.0],
|
||||
[8.1.1],
|
||||
[https://github.com/harfbuzz/harfbuzz/issues/new],
|
||||
[harfbuzz],
|
||||
[http://harfbuzz.org/])
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
project('harfbuzz', 'c', 'cpp',
|
||||
meson_version: '>= 0.55.0',
|
||||
version: '8.1.0',
|
||||
version: '8.1.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
|
||||
|
|
|
@ -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.1.0"
|
||||
#define HB_VERSION_STRING "8.1.1"
|
||||
|
||||
/**
|
||||
* HB_VERSION_ATLEAST:
|
||||
|
|
Loading…
Add table
Reference in a new issue