Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
RazrFalcon committed Jun 27, 2021
1 parent 306b76d commit 8a138b1
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.4.0] - 2021-06-27
### Added
- `Face::from_face`, so you can create `rustybuzz::Face` directly from `ttf_parser::Face`.
Thanks to [@lain-dono](https://github.com/lain-dono)
Expand Down Expand Up @@ -88,7 +90,8 @@ At this point, this is just a simple Rust bindings to a stripped down harfbuzz.
Embedded harfbuzz relies only on internal TrueType implementation.
- Most of the non-shaping harfbuzz API.

[Unreleased]: https://github.com/RazrFalcon/rustybuzz/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/RazrFalcon/rustybuzz/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/RazrFalcon/rustybuzz/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/RazrFalcon/rustybuzz/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/RazrFalcon/rustybuzz/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/RazrFalcon/rustybuzz/compare/v0.1.0...v0.1.1
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustybuzz"
version = "0.3.0"
version = "0.4.0"
authors = ["Evgeniy Reizner <razrfalcon@gmail.com>"]
edition = "2018"
description = "A complete harfbuzz shaping algorithm port to Rust."
Expand Down
5 changes: 5 additions & 0 deletions scripts/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Blocks.txt
IndicPositionalCategory.txt
IndicSyllabicCategory.txt
Scripts.txt
UnicodeData.txt
8 changes: 8 additions & 0 deletions scripts/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## Usage

```sh
python gen-universal-table.py > ../src/complex/universal_table.rs

python3 ./gen-vowel-constraints.py > ../src/complex/vowel_constraints.rs
rustfmt ../src/complex/vowel_constraints.rs
```
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ A complete [harfbuzz](https://github.com/harfbuzz/harfbuzz) shaping algorithm po
*/

#![no_std]
#![doc(html_root_url = "https://docs.rs/rustybuzz/0.3.0")]
#![doc(html_root_url = "https://docs.rs/rustybuzz/0.4.0")]
#![warn(missing_docs)]

extern crate alloc;
Expand Down

0 comments on commit 8a138b1

Please sign in to comment.