From 8f2b86409e335deb875271b7a3d1423c704fe89e Mon Sep 17 00:00:00 2001 From: David Warring Date: Fri, 9 Aug 2024 06:22:52 +1200 Subject: [PATCH] 0.5.8 --- Changes | 5 +++++ META6.json | 4 ++-- lib/Font/FreeType.rakumod | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 53e1dee..f2f2c58 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ {{$NEXT}} +0.5.8 2024-08-09T06:21:56+12:00 + - Fix tests on Windows + - Take a copy of FT_Bitmap_Size structs. To avoid any chance of + dangling references. + 0.5.7 2024-05-24T07:49:27+12:00 - Add FT_Face.get-bitmap-size() accessor. Fix and reinstate BDF fonts. diff --git a/META6.json b/META6.json index e39141e..13db22d 100644 --- a/META6.json +++ b/META6.json @@ -36,12 +36,12 @@ "libraries/ft6", "libraries/freetype" ], - "source-url": "git://github.com/pdf-raku/Font-FreeType-raku.git", + "source-url": "https://github.com/pdf-raku/Font-FreeType-raku.git", "tags": [ "font", "freetype" ], "test-depends": [ ], - "version": "0.5.7" + "version": "0.5.8" } diff --git a/lib/Font/FreeType.rakumod b/lib/Font/FreeType.rakumod index 0440600..35c7fff 100644 --- a/lib/Font/FreeType.rakumod +++ b/lib/Font/FreeType.rakumod @@ -1,6 +1,6 @@ use v6; -class Font::FreeType:ver<0.5.7> { +class Font::FreeType:ver<0.5.8> { use NativeCall; use Font::FreeType::Face; use Font::FreeType::Error;