Skip to content

Commit e8f1454

Browse files
committed
Version bump.
1 parent 1cac7c7 commit e8f1454

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,21 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
8+
9+
## [0.25.0] - 2024-10-04
10+
### Added
11+
- `STAT` table parsing. Thanks to [inferiorhumanorgans](https://github.com/inferiorhumanorgans).
12+
- `UnicodeRanges` internal field is public now.
13+
- `cargo-c` metadata to C API. Thanks to [lu-zero](https://github.com/lu-zero).
14+
815
### Changed
916
- `Face::is_italic` checks for italic angle as well.
1017
- `Face::italic_angle` returns just a `f32` and not `Option<f32>` now.
1118

19+
### Fixed
20+
- Only apply `avar` table to the variation axis being set.
21+
Thanks to [maxmelander](https://github.com/maxmelander).
22+
1223
## [0.24.1] - 2024-08-05
1324
### Added
1425
- (`glyf`) `glyf::Table::bbox`. Thanks to [LaurenzV](https://github.com/LaurenzV).
@@ -498,7 +509,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
498509
### Removed
499510
- `GDEF` table parsing.
500511
501-
[Unreleased]: https://github.com/RazrFalcon/ttf-parser/compare/v0.24.1...HEAD
512+
[Unreleased]: https://github.com/RazrFalcon/ttf-parser/compare/v0.25.0...HEAD
513+
[0.25.0]: https://github.com/RazrFalcon/ttf-parser/compare/v0.24.1...v0.25.0
502514
[0.24.1]: https://github.com/RazrFalcon/ttf-parser/compare/v0.24.0...v0.24.1
503515
[0.24.0]: https://github.com/RazrFalcon/ttf-parser/compare/v0.23.0...v0.24.0
504516
[0.23.0]: https://github.com/RazrFalcon/ttf-parser/compare/v0.22.0...v0.23.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ttf-parser"
3-
version = "0.24.1"
3+
version = "0.25.0"
44
authors = ["Yevhenii Reizner <[email protected]>"]
55
keywords = ["ttf", "truetype", "opentype"]
66
categories = ["parser-implementations"]

c-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ttf-parser-capi"
3-
version = "0.20.0"
3+
version = "0.25.0"
44
authors = ["Yevhenii Reizner <[email protected]>"]
55
license = "MIT"
66
edition = "2018"

c-api/ttfparser.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
#include <stdint.h>
1212

1313
#define TTFP_MAJOR_VERSION 0
14-
#define TTFP_MINOR_VERSION 20
14+
#define TTFP_MINOR_VERSION 25
1515
#define TTFP_PATCH_VERSION 0
16-
#define TTFP_VERSION "0.20.0"
16+
#define TTFP_VERSION "0.25.0"
1717

1818
/**
1919
* @brief A glyph image format.

0 commit comments

Comments
 (0)