Skip to content

Commit

Permalink
0.5.10
Browse files Browse the repository at this point in the history
  • Loading branch information
dwarring committed Nov 6, 2024
1 parent 9ff0fb8 commit 19b950a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{{$NEXT}}

0.5.10 2024-11-07T05:34:13+13:00
- Coerce to IO::Path objects on face creation #31

0.5.9 2024-10-01T05:29:31+13:00
- Use MacOS::NativeLib to locate libraries on MacOS

Expand Down
2 changes: 1 addition & 1 deletion META6.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@
],
"test-depends": [
],
"version": "0.5.9"
"version": "0.5.10"
}
2 changes: 1 addition & 1 deletion lib/Font/FreeType.rakumod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
unit class Font::FreeType:ver<0.5.9>;
unit class Font::FreeType:ver<0.5.10>;

use NativeCall;
use Font::FreeType::Face;
Expand Down
2 changes: 1 addition & 1 deletion lib/Font/FreeType/_Glyph.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ method outline handles<decompose bbox bounding-box> returns Font::FreeType::Out
unless self.is-outline;
my FT_Outline:D $outline = $.raw.outline;
my FT_Outline $raw = $outline.clone(self!library);
Font::FreeType::Outline.new: :$raw, :$.face;
Font::FreeType::Outline.new: :$raw, :$!face;
}

0 comments on commit 19b950a

Please sign in to comment.