Skip to content

Commit

Permalink
8.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledhosny committed Mar 29, 2024
1 parent 5b34058 commit 6397300
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 7 deletions.
13 changes: 13 additions & 0 deletions NEWS
@@ -1,3 +1,16 @@
Overview of changes leading to 8.4.0
Saturday, March 29, 2024
====================================
- Add /bigobj to MSVC compiler flags in meson build, to fix building hb-subset.cc
- Specify minimum versions of various dependencies in meson and autotools build.
- When subsetting, place variation store at the end of “GDEF” table to fix
shaping issues with some versions of Adobe InDesign.
- Various build fixes.

- New API:
+hb_buffer_set_random_state()
+hb_buffer_get_random_state()

Overview of changes leading to 8.3.1
Saturday, March 16, 2024
====================================
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ([2.64])
AC_INIT([HarfBuzz],
[8.3.1],
[8.4.0],
[https://github.com/harfbuzz/harfbuzz/issues/new],
[harfbuzz],
[http://harfbuzz.org/])
Expand Down
1 change: 1 addition & 0 deletions docs/harfbuzz-docs.xml
Expand Up @@ -120,6 +120,7 @@
<index id="api-index-full"><title>API Index</title><xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include></index>
<index id="deprecated-api-index"><title>Index of deprecated API</title><xi:include href="xml/api-index-deprecated.xml"><xi:fallback /></xi:include></index>

<index id="api-index-8-4-0"><title>Index of new symbols in 8.4.0</title><xi:include href="xml/api-index-8.4.0.xml"><xi:fallback /></xi:include></index>
<index id="api-index-8-3-1"><title>Index of new symbols in 8.3.1</title><xi:include href="xml/api-index-8.3.1.xml"><xi:fallback /></xi:include></index>
<index id="api-index-8-2-0"><title>Index of new symbols in 8.2.0</title><xi:include href="xml/api-index-8.2.0.xml"><xi:fallback /></xi:include></index>
<index id="api-index-8-1-0"><title>Index of new symbols in 8.1.0</title><xi:include href="xml/api-index-8.1.0.xml"><xi:fallback /></xi:include></index>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
@@ -1,6 +1,6 @@
project('harfbuzz', 'c', 'cpp',
meson_version: '>= 0.55.0',
version: '8.3.1',
version: '8.4.0',
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
Expand Down
4 changes: 2 additions & 2 deletions src/hb-buffer.cc
Expand Up @@ -1375,7 +1375,7 @@ hb_buffer_get_not_found_glyph (const hb_buffer_t *buffer)
* Defaults to 1 and when buffer contents are cleared.
* A value of 0 disables randomness during shaping.
*
* XSince: REPLACEME
* Since: 8.4.0
**/
void
hb_buffer_set_random_state (hb_buffer_t *buffer,
Expand All @@ -1396,7 +1396,7 @@ hb_buffer_set_random_state (hb_buffer_t *buffer,
* Return value:
* The @buffer random state
*
* XSince: REPLACEME
* Since: 8.4.0
**/
unsigned
hb_buffer_get_random_state (const hb_buffer_t *buffer)
Expand Down
6 changes: 3 additions & 3 deletions src/hb-version.h
Expand Up @@ -47,20 +47,20 @@ HB_BEGIN_DECLS
*
* The minor component of the library version available at compile-time.
*/
#define HB_VERSION_MINOR 3
#define HB_VERSION_MINOR 4
/**
* HB_VERSION_MICRO:
*
* The micro component of the library version available at compile-time.
*/
#define HB_VERSION_MICRO 1
#define HB_VERSION_MICRO 0

/**
* HB_VERSION_STRING:
*
* A string literal containing the library version available at compile-time.
*/
#define HB_VERSION_STRING "8.3.1"
#define HB_VERSION_STRING "8.4.0"

/**
* HB_VERSION_ATLEAST:
Expand Down

0 comments on commit 6397300

Please sign in to comment.