Skip to content

Commit

Permalink
Release request commit created with Cranko.
Browse files Browse the repository at this point in the history
+++ cranko-rc-info-v1
[[projects]]
qnames = ["tectonic", "cargo"]
bump_spec = "micro bump"

+++
  • Loading branch information
cranko committed Oct 13, 2020
2 parents d814337 + 39d5c67 commit 5777564
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 33 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# rc: micro bump

- Fix source-based installation by updating to cbindgen 0.15, after later
releases in the 0.14 series were yanked (@qtfkwk, #656)
- Fix unreachable code in the CID/Type0 code (@burrbull, @pkgw, #639, #646)
- Update the `cargo vcpkg` build process to use a newer version of `vcpkg`, fixing
Windows builds when msys2.org is unreliable (@pkgw).

# tectonic 0.1.16 (2020-10-02)

- Add a "plain" backend for reporting status, used when the program is not
attached to a TTY. It will print out reports with colorization. (#636,
@ralismark)
Expand Down
65 changes: 36 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ regex = "^1.3"
sha2 = "^0.9"
tectonic_cfg_support = { path = "cfg_support", version = "0.0.0-dev.0" }
vcpkg = "0.2.10"
cbindgen = "0.14.4"
cbindgen = "0.15.0"

[dependencies]
app_dirs = { version = "2", package = "app_dirs2" }
atty = "0.2"
byte-unit = "^4.0"
cfg-if = "0.1"
cfg-if = "1.0"
structopt = "0.3"
error-chain = "^0.12"
flate2 = { version = "^1.0", default-features = false, features = ["zlib"] }
Expand Down Expand Up @@ -87,7 +87,7 @@ tokio = "0.1.22"

[package.metadata.vcpkg]
git = "https://github.com/microsoft/vcpkg"
rev = "ff1d20fd9a72d72d51a549c27b669cd6040fb7d9"
rev = "76a7e9248fb3c57350b559966dcaa2d52a5e4458"

[package.metadata.vcpkg.target]
x86_64-apple-darwin = { install = ["freetype","harfbuzz[icu,graphite2]"] }
Expand Down
2 changes: 1 addition & 1 deletion tectonic/dpx-cidtype0.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ add_CIDVMetrics (sfnt *sfont, pdf_obj *fontdict,
vertOriginX = PDFUNIT(hmtx[gid].advance*0.5);
vertOriginY = defaultVertOriginY;
for (i = 0;
i < vorg->numVertOriginYMetrics && gid > vorg->vertOriginYMetrics[i].glyphIndex;
i < vorg->numVertOriginYMetrics && gid >= vorg->vertOriginYMetrics[i].glyphIndex;
i++) {
if (gid == vorg->vertOriginYMetrics[i].glyphIndex)
vertOriginY = PDFUNIT(vorg->vertOriginYMetrics[i].vertOriginY);
Expand Down

0 comments on commit 5777564

Please sign in to comment.