diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2015-10-13 10:55:33 -0300 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2015-10-13 10:55:33 -0300 |
commit | ab170529246ad80830bef2b3c8b48e9a8d2b7483 (patch) | |
tree | 9dc00a14db667f16180f06e2570d8e6faf98ced3 | |
parent | ed13e2ce509408f849255be1d3cc3dbd7dbb3ba2 (diff) | |
download | harfbuzz-1.0.5.tar.gz |
1.0.51.0.5
-rw-r--r-- | NEWS | 24 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 25 insertions, 1 deletions
@@ -1,3 +1,27 @@ +Overview of changes leading to 1.0.5 +Tuesday, October 13, 2015 +==================================== + +- Fix multiple memory access bugs discovered using libFuzzer. + https://github.com/behdad/harfbuzz/issues/139 + Everyone should upgrade to this version as soon as possible. + We now have continuous fuzzing set up, to avoid issues like + these creeping in again. +- Misc fixes. + +- New API: + * hb_font_set_parent(). + * hb_ft_font_[sg]et_load_flags() + The default flags for fonts created using hb_ft_font_create() + has changed to default to FT_LOAD_DEFAULT now. Previously it + was defaulting to FT_LOAD_DFEAULT|FT_LOAD_NO_HINTING. + +- API changes: + * Fonts now default to units-per-EM as their scale, instead of 0. + * hb_font_create_sub_font() does NOT make parent font immutable + anymore. hb_font_make_immutable() does. + + Overview of changes leading to 1.0.4 Wednesday, September 30, 2015 ==================================== diff --git a/configure.ac b/configure.ac index 15decdc9..d83a1999 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.64]) AC_INIT([HarfBuzz], - [1.0.4], + [1.0.5], [http://bugs.freedesktop.org/enter_bug.cgi?product=harfbuzz], [harfbuzz], [http://harfbuzz.org/]) |