2.7.4
This commit is contained in:
parent
6808b1fb30
commit
7236c7e29c
7
NEWS
7
NEWS
|
@ -1,3 +1,10 @@
|
||||||
|
Overview of changes leading to 2.7.4
|
||||||
|
Sunday, December 27, 2020
|
||||||
|
====================================
|
||||||
|
- Fix missing --enable-introspection configure option from previous release
|
||||||
|
tarball.
|
||||||
|
- Documentation updates.
|
||||||
|
|
||||||
Overview of changes leading to 2.7.3
|
Overview of changes leading to 2.7.3
|
||||||
Wednesday, December 23, 2020
|
Wednesday, December 23, 2020
|
||||||
====================================
|
====================================
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AC_PREREQ([2.64])
|
AC_PREREQ([2.64])
|
||||||
AC_INIT([HarfBuzz],
|
AC_INIT([HarfBuzz],
|
||||||
[2.7.3],
|
[2.7.4],
|
||||||
[https://github.com/harfbuzz/harfbuzz/issues/new],
|
[https://github.com/harfbuzz/harfbuzz/issues/new],
|
||||||
[harfbuzz],
|
[harfbuzz],
|
||||||
[http://harfbuzz.org/])
|
[http://harfbuzz.org/])
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
project('harfbuzz', 'c', 'cpp',
|
project('harfbuzz', 'c', 'cpp',
|
||||||
meson_version: '>= 0.47.0',
|
meson_version: '>= 0.47.0',
|
||||||
version: '2.7.3',
|
version: '2.7.4',
|
||||||
default_options: [
|
default_options: [
|
||||||
'cpp_eh=none', # Just to support msvc, we are passing -fno-rtti also anyway
|
'cpp_eh=none', # Just to support msvc, we are passing -fno-rtti also anyway
|
||||||
'cpp_rtti=false', # Just to support msvc, we are passing -fno-exceptions also anyway
|
'cpp_rtti=false', # Just to support msvc, we are passing -fno-exceptions also anyway
|
||||||
|
|
|
@ -38,9 +38,9 @@ HB_BEGIN_DECLS
|
||||||
|
|
||||||
#define HB_VERSION_MAJOR 2
|
#define HB_VERSION_MAJOR 2
|
||||||
#define HB_VERSION_MINOR 7
|
#define HB_VERSION_MINOR 7
|
||||||
#define HB_VERSION_MICRO 3
|
#define HB_VERSION_MICRO 4
|
||||||
|
|
||||||
#define HB_VERSION_STRING "2.7.3"
|
#define HB_VERSION_STRING "2.7.4"
|
||||||
|
|
||||||
#define HB_VERSION_ATLEAST(major,minor,micro) \
|
#define HB_VERSION_ATLEAST(major,minor,micro) \
|
||||||
((major)*10000+(minor)*100+(micro) <= \
|
((major)*10000+(minor)*100+(micro) <= \
|
||||||
|
|
Loading…
Reference in New Issue