11.4.1
diff --git a/NEWS b/NEWS index d96c2fd..b2ffb82 100644 --- a/NEWS +++ b/NEWS
@@ -1,3 +1,8 @@ +Overview of changes leading to 11.4.1 +Wednesday, August 13, 2025 +==================================== +- Fix clang compiler warnings. + Overview of changes leading to 11.4.0 Wednesday, August 13, 2025 ====================================
diff --git a/meson.build b/meson.build index 1a4c837..49f3739 100644 --- a/meson.build +++ b/meson.build
@@ -1,6 +1,6 @@ project('harfbuzz', ['c', 'cpp'], meson_version: '>= 0.60.0', - version: '11.4.0', + version: '11.4.1', default_options: [ 'cpp_eh=none', # Just to support msvc, we are passing -fno-exceptions also anyway # 'cpp_rtti=false', # Do NOT enable, wraps inherit it and ICU needs RTTI
diff --git a/src/hb-version.h b/src/hb-version.h index 53e0e69..2d2dab4 100644 --- a/src/hb-version.h +++ b/src/hb-version.h
@@ -53,14 +53,14 @@ * * 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 "11.4.0" +#define HB_VERSION_STRING "11.4.1" /** * HB_VERSION_ATLEAST: