Skip to content

Commit

Permalink
8.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledhosny committed Sep 8, 2023
1 parent d5cb1a3 commit c1eb66d
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 8 deletions.
12 changes: 12 additions & 0 deletions NEWS
@@ -1,3 +1,15 @@
Overview of changes leading to 8.2.0
Friday, September 8, 2023
====================================
- Various build and fuzzing fixes
- Improvements to COLRv1 painting.

- New API:
+hb_paint_color_glyph_func_t
+hb_paint_funcs_set_color_glyph_func
+hb_paint_color_glyph


Overview of changes leading to 8.1.1
Wednesday, August 2, 2023
====================================
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ([2.64])
AC_INIT([HarfBuzz],
[8.1.1],
[8.2.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-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>
<index id="api-index-8-0-0"><title>Index of new symbols in 8.0.0</title><xi:include href="xml/api-index-8.0.0.xml"><xi:fallback /></xi:include></index>
<index id="api-index-7-3-0"><title>Index of new symbols in 7.3.0</title><xi:include href="xml/api-index-7.3.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.1.1',
version: '8.2.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
2 changes: 1 addition & 1 deletion src/hb-paint.cc
Expand Up @@ -488,7 +488,7 @@ hb_paint_pop_transform (hb_paint_funcs_t *funcs, void *paint_data)
*
* Perform a "color-glyph" paint operation.
*
* XSince: REPLACEME
* Since: 8.2.0
*/
hb_bool_t
hb_paint_color_glyph (hb_paint_funcs_t *funcs, void *paint_data,
Expand Down
4 changes: 2 additions & 2 deletions src/hb-paint.h
Expand Up @@ -148,7 +148,7 @@ typedef void (*hb_paint_pop_transform_func_t) (hb_paint_funcs_t *funcs,
*
* Return value: %true if the glyph was painted, %false otherwise.
*
* XSince: REPLACEME
* Since: 8.2.0
*/
typedef hb_bool_t (*hb_paint_color_glyph_func_t) (hb_paint_funcs_t *funcs,
void *paint_data,
Expand Down Expand Up @@ -752,7 +752,7 @@ hb_paint_funcs_set_pop_transform_func (hb_paint_funcs_t *funcs,
*
* Sets the color-glyph callback on the paint functions struct.
*
* Since: 7.0.0
* Since: 8.2.0
*/
HB_EXTERN void
hb_paint_funcs_set_color_glyph_func (hb_paint_funcs_t *funcs,
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 1
#define HB_VERSION_MINOR 2
/**
* 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.1.1"
#define HB_VERSION_STRING "8.2.0"

/**
* HB_VERSION_ATLEAST:
Expand Down

0 comments on commit c1eb66d

Please sign in to comment.