13.2.1
diff --git a/NEWS b/NEWS index 6e4dca2..70b30e4 100644 --- a/NEWS +++ b/NEWS
@@ -1,3 +1,9 @@ +Overview of changes leading to 13.2.1 +Thursday, March 19, 2026 +===================================== +- Fix regression in tracing messages from previous release. + + Overview of changes leading to 13.2.0 Thursday, March 19, 2026 =====================================
diff --git a/meson.build b/meson.build index 91d97ad..e76f364 100644 --- a/meson.build +++ b/meson.build
@@ -1,6 +1,6 @@ project('harfbuzz', ['c', 'cpp'], meson_version: '>= 0.60.0', - version: '13.2.0', + version: '13.2.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 f4e9f91..08037b1 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 "13.2.0" +#define HB_VERSION_STRING "13.2.1" /** * HB_VERSION_ATLEAST: