Skip to content

Commit

Permalink
Release 0.20.0
Browse files Browse the repository at this point in the history
Update ttf-parser to 0.20
  • Loading branch information
alexheretic committed Oct 22, 2023
1 parent 23fb5e9 commit d9bb57a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ jobs:
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
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: cargo test
- name: Build no_std
run: cargo build --target thumbv6m-none-eabi --no-default-features --features "variable-fonts opentype-layout glyph-names"
Expand All @@ -24,5 +23,5 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: rustup update stable
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: cargo fmt -- --check
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Unreleased (0.19.1)
# 0.20.0
* Update _ttf-parser_ to `0.20.0`, [changelog](https://github.com/RazrFalcon/ttf-parser/blob/master/CHANGELOG.md#0200---2023-10-15).
* Guard against future soundness issues if upstream `Face` were to implement `Drop`.

# 0.19.0
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.19.0"
version = "0.20.0"
authors = ["Alex Butler <[email protected]>"]
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.19", default-features = false }
ttf-parser = { version = "0.20", default-features = false }

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

0 comments on commit d9bb57a

Please sign in to comment.