This commit is contained in:
Behdad Esfahbod 2019-10-28 14:45:31 -07:00
parent 5a59de2b98
commit ce11df1b5b
4 changed files with 12 additions and 4 deletions

8
NEWS
View File

@ -1,3 +1,11 @@
Overview of changes leading to 2.6.3
Monday, October 28, 2019
====================================
- Misc small fixes, mostly to build-related issues.
- New API:
+hb_font_get_nominal_glyphs()
Overview of changes leading to 2.6.2 Overview of changes leading to 2.6.2
Monday, September 30, 2019 Monday, September 30, 2019
==================================== ====================================

View File

@ -1,6 +1,6 @@
AC_PREREQ([2.64]) AC_PREREQ([2.64])
AC_INIT([HarfBuzz], AC_INIT([HarfBuzz],
[2.6.2], [2.6.3],
[https://github.com/harfbuzz/harfbuzz/issues/new], [https://github.com/harfbuzz/harfbuzz/issues/new],
[harfbuzz], [harfbuzz],
[http://harfbuzz.org/]) [http://harfbuzz.org/])

View File

@ -799,7 +799,7 @@ hb_font_get_nominal_glyph (hb_font_t *font,
* *
* Return value: * Return value:
* *
* Since: REPLACEME * Since: 2.6.3
**/ **/
unsigned int unsigned int
hb_font_get_nominal_glyphs (hb_font_t *font, hb_font_get_nominal_glyphs (hb_font_t *font,

View File

@ -38,9 +38,9 @@ HB_BEGIN_DECLS
#define HB_VERSION_MAJOR 2 #define HB_VERSION_MAJOR 2
#define HB_VERSION_MINOR 6 #define HB_VERSION_MINOR 6
#define HB_VERSION_MICRO 2 #define HB_VERSION_MICRO 3
#define HB_VERSION_STRING "2.6.2" #define HB_VERSION_STRING "2.6.3"
#define HB_VERSION_ATLEAST(major,minor,micro) \ #define HB_VERSION_ATLEAST(major,minor,micro) \
((major)*10000+(minor)*100+(micro) <= \ ((major)*10000+(minor)*100+(micro) <= \