Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
RazrFalcon committed Oct 4, 2024
1 parent 1cac7c7 commit e8f1454
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,21 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.25.0] - 2024-10-04
### Added
- `STAT` table parsing. Thanks to [inferiorhumanorgans](https://github.com/inferiorhumanorgans).
- `UnicodeRanges` internal field is public now.
- `cargo-c` metadata to C API. Thanks to [lu-zero](https://github.com/lu-zero).

### Changed
- `Face::is_italic` checks for italic angle as well.
- `Face::italic_angle` returns just a `f32` and not `Option<f32>` now.

### Fixed
- Only apply `avar` table to the variation axis being set.
Thanks to [maxmelander](https://github.com/maxmelander).

## [0.24.1] - 2024-08-05
### Added
- (`glyf`) `glyf::Table::bbox`. Thanks to [LaurenzV](https://github.com/LaurenzV).
Expand Down Expand Up @@ -498,7 +509,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Removed
- `GDEF` table parsing.
[Unreleased]: https://github.com/RazrFalcon/ttf-parser/compare/v0.24.1...HEAD
[Unreleased]: https://github.com/RazrFalcon/ttf-parser/compare/v0.25.0...HEAD
[0.25.0]: https://github.com/RazrFalcon/ttf-parser/compare/v0.24.1...v0.25.0
[0.24.1]: https://github.com/RazrFalcon/ttf-parser/compare/v0.24.0...v0.24.1
[0.24.0]: https://github.com/RazrFalcon/ttf-parser/compare/v0.23.0...v0.24.0
[0.23.0]: https://github.com/RazrFalcon/ttf-parser/compare/v0.22.0...v0.23.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ttf-parser"
version = "0.24.1"
version = "0.25.0"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
keywords = ["ttf", "truetype", "opentype"]
categories = ["parser-implementations"]
Expand Down
2 changes: 1 addition & 1 deletion c-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ttf-parser-capi"
version = "0.20.0"
version = "0.25.0"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
license = "MIT"
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions c-api/ttfparser.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
#include <stdint.h>

#define TTFP_MAJOR_VERSION 0
#define TTFP_MINOR_VERSION 20
#define TTFP_MINOR_VERSION 25
#define TTFP_PATCH_VERSION 0
#define TTFP_VERSION "0.20.0"
#define TTFP_VERSION "0.25.0"

/**
* @brief A glyph image format.
Expand Down

0 comments on commit e8f1454

Please sign in to comment.