This commit is contained in:
Khaled Hosny 2023-02-20 15:54:12 +02:00
parent 6db871eb3a
commit 1d1f93a612
4 changed files with 10 additions and 4 deletions

6
NEWS
View File

@ -1,3 +1,9 @@
Overview of changes leading to 7.0.1
Monday, February 20, 2023
====================================
- Various build and bug fixes.
Overview of changes leading to 7.0.0 Overview of changes leading to 7.0.0
Saturday, February 11, 2023 Saturday, February 11, 2023
==================================== ====================================

View File

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

View File

@ -1,6 +1,6 @@
project('harfbuzz', 'c', 'cpp', project('harfbuzz', 'c', 'cpp',
meson_version: '>= 0.55.0', meson_version: '>= 0.55.0',
version: '7.0.0', version: '7.0.1',
default_options: [ default_options: [
'cpp_eh=none', # Just to support msvc, we are passing -fno-exceptions also anyway '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 'cpp_rtti=false', # Just to support msvc, we are passing -fno-rtti also anyway

View File

@ -53,14 +53,14 @@ HB_BEGIN_DECLS
* *
* The micro component of the library version available at compile-time. * The micro component of the library version available at compile-time.
*/ */
#define HB_VERSION_MICRO 0 #define HB_VERSION_MICRO 1
/** /**
* HB_VERSION_STRING: * HB_VERSION_STRING:
* *
* A string literal containing the library version available at compile-time. * A string literal containing the library version available at compile-time.
*/ */
#define HB_VERSION_STRING "7.0.0" #define HB_VERSION_STRING "7.0.1"
/** /**
* HB_VERSION_ATLEAST: * HB_VERSION_ATLEAST: