diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2018-12-20 21:48:57 -0500 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2018-12-20 21:48:57 -0500 |
commit | 4941e95f10fe0fe658752134a42b58896fb19c42 (patch) | |
tree | 56189a29c59be7f7cb88afe8af23f5d1477faa56 | |
parent | 87f7c83fffb7e64970be23c8e3c620d32a3b8f5b (diff) |
2.3.02.3.0
-rw-r--r-- | NEWS | 15 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/hb-aat-layout.cc | 6 | ||||
-rw-r--r-- | src/hb-version.h | 4 |
4 files changed, 21 insertions, 6 deletions
@@ -1,3 +1,18 @@ +Overview of changes leading to 2.3.0 +Thursday, December 20, 2018 +==================================== +- Fix regression on big-endian architectures. Ouch! +- Misc bug and build fixes. +- Fix subsetting of simple GSUB/GDEF. +- Merge CFF / CFF2 support contributed by Adobe. This mostly involves + the subsetter, but also get_glyph_extents on CFF fonts. + +New API in hb-aat.h: ++hb_aat_layout_has_substitution() ++hb_aat_layout_has_positioning() ++hb_aat_layout_has_tracking() + + Overview of changes leading to 2.2.0 Thursday, November 29, 2018 ==================================== diff --git a/configure.ac b/configure.ac index 4d7348ef..03155372 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.64]) AC_INIT([HarfBuzz], - [2.2.0], + [2.3.0], [https://github.com/harfbuzz/harfbuzz/issues/new], [harfbuzz], [http://harfbuzz.org/]) diff --git a/src/hb-aat-layout.cc b/src/hb-aat-layout.cc index 8a868a05..8de8205f 100644 --- a/src/hb-aat-layout.cc +++ b/src/hb-aat-layout.cc @@ -209,7 +209,7 @@ hb_aat_layout_compile_map (const hb_aat_map_builder_t *mapper, * @face: * * Returns: - * Since: REPLACEME + * Since: 2.3.0 */ hb_bool_t hb_aat_layout_has_substitution (hb_face_t *face) @@ -270,7 +270,7 @@ hb_aat_layout_remove_deleted_glyphs (hb_buffer_t *buffer) * @face: * * Returns: - * Since: REPLACEME + * Since: 2.3.0 */ hb_bool_t hb_aat_layout_has_positioning (hb_face_t *face) @@ -300,7 +300,7 @@ hb_aat_layout_position (const hb_ot_shape_plan_t *plan, * @face: * * Returns: - * Since: REPLACEME + * Since: 2.3.0 */ hb_bool_t hb_aat_layout_has_tracking (hb_face_t *face) diff --git a/src/hb-version.h b/src/hb-version.h index 7c4a8ad4..0c82d5bb 100644 --- a/src/hb-version.h +++ b/src/hb-version.h @@ -37,10 +37,10 @@ HB_BEGIN_DECLS #define HB_VERSION_MAJOR 2 -#define HB_VERSION_MINOR 2 +#define HB_VERSION_MINOR 3 #define HB_VERSION_MICRO 0 -#define HB_VERSION_STRING "2.2.0" +#define HB_VERSION_STRING "2.3.0" #define HB_VERSION_ATLEAST(major,minor,micro) \ ((major)*10000+(minor)*100+(micro) <= \ |