From 34ff166de50a757c8cb32d6f047f0901e052d814 Mon Sep 17 00:00:00 2001 From: Lucas Cimon <925560+Lucas-C@users.noreply.github.com> Date: Fri, 4 Aug 2023 17:53:36 +0200 Subject: [PATCH] v2.7.5 --- CHANGELOG.md | 4 +++- fpdf/fpdf.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a26ab7d5d..646975108 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,9 @@ in order to get warned about deprecated features used in your code. This can also be enabled programmatically with `warnings.simplefilter('default', DeprecationWarning)`. -## [2.7.5] - Not released yet +## [2.7.6] - Not released yet + +## [2.7.5] - 2023-08-04 ### Added - [`FPDF.set_text_shaping()`](https://pyfpdf.github.io/fpdf2/fpdf/fpdf.html#fpdf.fpdf.FPDF.set_text_shaping): new method to perform text shaping using **Harfbuzz** - [documentation](https://pyfpdf.github.io/fpdf2/TextShaping.html) - thanks to @andersonhc in [PR #820](https://github.com/PyFPDF/fpdf2/pull/820) - [`FPDF.mirror()`](https://pyfpdf.github.io/fpdf2/fpdf/fpdf.html#fpdf.fpdf.FPDF.mirror) - New method: [documentation page](https://pyfpdf.github.io/fpdf2/Transformations.html) - Contributed by @sebastiantia diff --git a/fpdf/fpdf.py b/fpdf/fpdf.py index e7f74ad9e..daf13fab2 100644 --- a/fpdf/fpdf.py +++ b/fpdf/fpdf.py @@ -89,7 +89,7 @@ class Image: from .util import get_scale_factor # Public global variables: -FPDF_VERSION = "2.7.4" +FPDF_VERSION = "2.7.5" PAGE_FORMATS = { "a3": (841.89, 1190.55), "a4": (595.28, 841.89),