diff options
author | eae <eae@chromium.org> | 2015-08-06 14:11:29 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-08-06 21:12:06 +0000 |
commit | 67fe042ace898d95435362a6462b97316a45247f (patch) | |
tree | 012a5a1bd2fef1ea3dd927bcb07557ed526e48a5 /third_party/harfbuzz-ng | |
parent | d9ed90affc6675872728a581b0caa16f4cce7b6a (diff) | |
download | chromium_src-67fe042ace898d95435362a6462b97316a45247f.zip chromium_src-67fe042ace898d95435362a6462b97316a45247f.tar.gz chromium_src-67fe042ace898d95435362a6462b97316a45247f.tar.bz2 |
Update harfbuzz-ng files missed by commit 340646
Update a couple of harfbuzz-ng files, notably version information,
that was left out when we updated to version 1.0.1 in commit 340646.
TBR=drott@chromium.org
BUG=470884
Review URL: https://codereview.chromium.org/1278863002
Cr-Commit-Position: refs/heads/master@{#342197}
Diffstat (limited to 'third_party/harfbuzz-ng')
-rw-r--r-- | third_party/harfbuzz-ng/NEWS | 2 | ||||
-rw-r--r-- | third_party/harfbuzz-ng/README | 1 | ||||
-rw-r--r-- | third_party/harfbuzz-ng/src/hb-version.h | 4 |
3 files changed, 4 insertions, 3 deletions
diff --git a/third_party/harfbuzz-ng/NEWS b/third_party/harfbuzz-ng/NEWS index af434d5..ed67abf 100644 --- a/third_party/harfbuzz-ng/NEWS +++ b/third_party/harfbuzz-ng/NEWS @@ -6,7 +6,7 @@ Monday, July 27, 2015 Overview of changes leading to 1.0.0 -Thursday, July 26, 2015 +Sunday, July 26, 2015 ==================================== - Implement Universal Shaping Engine: diff --git a/third_party/harfbuzz-ng/README b/third_party/harfbuzz-ng/README index d34bc74..dea1068 100644 --- a/third_party/harfbuzz-ng/README +++ b/third_party/harfbuzz-ng/README @@ -1,5 +1,6 @@ [![Build Status](https://travis-ci.org/behdad/harfbuzz.svg)](https://travis-ci.org/behdad/harfbuzz) [![Coverage Status](https://img.shields.io/coveralls/behdad/harfbuzz.svg)](https://coveralls.io/r/behdad/harfbuzz) +[![Coverity Scan](https://img.shields.io/coverity/scan/5450.svg)](https://scan.coverity.com/projects/5450) This is HarfBuzz, a text shaping library. diff --git a/third_party/harfbuzz-ng/src/hb-version.h b/third_party/harfbuzz-ng/src/hb-version.h index 4a0f5e0..aea115f 100644 --- a/third_party/harfbuzz-ng/src/hb-version.h +++ b/third_party/harfbuzz-ng/src/hb-version.h @@ -38,9 +38,9 @@ HB_BEGIN_DECLS #define HB_VERSION_MAJOR 1 #define HB_VERSION_MINOR 0 -#define HB_VERSION_MICRO 0 +#define HB_VERSION_MICRO 1 -#define HB_VERSION_STRING "1.0.0" +#define HB_VERSION_STRING "1.0.1" #define HB_VERSION_ATLEAST(major,minor,micro) \ ((major)*10000+(minor)*100+(micro) <= \ |