Skip to content

Commit

Permalink
Release 0.19.0
Browse files Browse the repository at this point in the history
ci: use crates-io sparse fetch
  • Loading branch information
alexheretic committed Apr 17, 2023
1 parent b006cd4 commit 3414a99
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
jobs:
test:
runs-on: ubuntu-latest
env:
RUST_BACKTRACE: 1
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
steps:
- run: rustup update stable
- run: rustup target add thumbv6m-none-eabi
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.19.0
* Update _ttf-parser_ to `0.19.0`, [changelog](https://github.com/RazrFalcon/ttf-parser/blob/master/CHANGELOG.md#0190---2023-04-17).

# 0.18.1
* Make `PreParsedSubtables` `face` field public. This allows referencing and unwrapping the underlying face.

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "owned_ttf_parser"
# Version should be inline with ttf-parser
version = "0.18.1"
version = "0.19.0"
authors = ["Alex Butler <alexheretic@gmail.com>"]
edition = "2021"
description = "ttf-parser plus support for owned data"
Expand All @@ -11,7 +11,7 @@ license = "Apache-2.0"
readme="README.md"

[dependencies]
ttf-parser = { version = "0.18.1", default-features = false }
ttf-parser = { version = "0.19", default-features = false }

[features]
default = ["std", "opentype-layout", "apple-layout", "variable-fonts", "glyph-names"]
Expand Down

0 comments on commit 3414a99

Please sign in to comment.