File tree Expand file tree Collapse file tree 4 files changed +17
-5
lines changed Expand file tree Collapse file tree 4 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,21 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
6
6
7
7
## [ 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
+
8
15
### Changed
9
16
- ` Face::is_italic ` checks for italic angle as well.
10
17
- ` Face::italic_angle ` returns just a ` f32 ` and not ` Option<f32> ` now.
11
18
19
+ ### Fixed
20
+ - Only apply ` avar ` table to the variation axis being set.
21
+ Thanks to [ maxmelander] ( https://github.com/maxmelander ) .
22
+
12
23
## [ 0.24.1] - 2024-08-05
13
24
### Added
14
25
- (` 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/).
498
509
### Removed
499
510
- `GDEF` table parsing.
500
511
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
502
514
[0.24.1]: https://github.com/RazrFalcon/ttf-parser/compare/v0.24.0...v0.24.1
503
515
[0.24.0]: https://github.com/RazrFalcon/ttf-parser/compare/v0.23.0...v0.24.0
504
516
[0.23.0]: https://github.com/RazrFalcon/ttf-parser/compare/v0.22.0...v0.23.0
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " ttf-parser"
3
- version = " 0.24.1 "
3
+ version = " 0.25.0 "
4
4
authors = [
" Yevhenii Reizner <[email protected] >" ]
5
5
keywords = [" ttf" , " truetype" , " opentype" ]
6
6
categories = [" parser-implementations" ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " ttf-parser-capi"
3
- version = " 0.20 .0"
3
+ version = " 0.25 .0"
4
4
authors = [
" Yevhenii Reizner <[email protected] >" ]
5
5
license = " MIT"
6
6
edition = " 2018"
Original file line number Diff line number Diff line change 11
11
#include <stdint.h>
12
12
13
13
#define TTFP_MAJOR_VERSION 0
14
- #define TTFP_MINOR_VERSION 20
14
+ #define TTFP_MINOR_VERSION 25
15
15
#define TTFP_PATCH_VERSION 0
16
- #define TTFP_VERSION "0.20 .0"
16
+ #define TTFP_VERSION "0.25 .0"
17
17
18
18
/**
19
19
* @brief A glyph image format.
You can’t perform that action at this time.
0 commit comments