NEWS | 8 ++++++++ RELEASING.md | 2 +- configure.ac | 2 +- src/hb-version.h | 4 ++-- 4 files changed, 12 insertions(+), 4 deletions(-)
New commits: commit 7796857c93b779e3c93eedd1cceb217d691dfd81 Author: Behdad Esfahbod <[email protected]> Date: Wed Jul 11 15:27:37 2018 +0200 Minor diff --git a/RELEASING.md b/RELEASING.md index 0aef610b..c57f8466 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -29,7 +29,7 @@ HarfBuzz release walk-through checklist: 7. "make release-files". Enter your GPG password. This creates a sha256 hash and signs it. -8. Now that you have release files built, commit NEWS and configure.ac changes, +8. Now that you have release files, commit NEWS, configure.ac, and src/hb-version.h, as well as any REPLACEME changes you made. The commit message is simply the release number. Eg. "1.4.7" commit 2b76767bf572364d3d647cdd139f2044a7ad06b2 Author: Behdad Esfahbod <[email protected]> Date: Wed Jul 11 15:27:13 2018 +0200 1.8.3 diff --git a/NEWS b/NEWS index c4fad25a..9031766d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,11 @@ +Overview of changes leading to 1.8.3 +Wednesday, July 11, 2018 +==================================== +- A couple of Indic / USE bug fixes. +- Disable vectorization, as it was causing unaligned access bus error on + certain 32bit architectures. + + Overview of changes leading to 1.8.2 Tuesday, July 3, 2018 ==================================== diff --git a/configure.ac b/configure.ac index 35de036b..b6fcfc02 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.64]) AC_INIT([HarfBuzz], - [1.8.2], + [1.8.3], [https://github.com/harfbuzz/harfbuzz/issues/new], [harfbuzz], [http://harfbuzz.org/]) diff --git a/src/hb-version.h b/src/hb-version.h index 7f2e9dd7..c3c38de7 100644 --- a/src/hb-version.h +++ b/src/hb-version.h @@ -38,9 +38,9 @@ HB_BEGIN_DECLS #define HB_VERSION_MAJOR 1 #define HB_VERSION_MINOR 8 -#define HB_VERSION_MICRO 2 +#define HB_VERSION_MICRO 3 -#define HB_VERSION_STRING "1.8.2" +#define HB_VERSION_STRING "1.8.3" #define HB_VERSION_ATLEAST(major,minor,micro) \ ((major)*10000+(minor)*100+(micro) <= \ _______________________________________________ HarfBuzz mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/harfbuzz
