From 4d1dd4761747e22ce70f1ce84df416934da5e60e Mon Sep 17 00:00:00 2001 From: Lucas Cimon <925560+Lucas-C@users.noreply.github.com> Date: Fri, 28 Apr 2023 12:12:19 +0200 Subject: [PATCH] v2.7.4 --- CHANGELOG.md | 4 +++- fpdf/fpdf.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6efb7229c..8a1a4688b 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.4] - Not released yet +## [2.7.5] - Not released yet + +## [2.7.4] - 2023-04-28 ### Added - [`FPDF.image()`](https://pyfpdf.github.io/fpdf2/fpdf/fpdf.html#fpdf.fpdf.FPDF.image): CMYK images can now be inserted directly by passing them into the image method. Contributed by @devdev29 - documentation on how to embed `graphs` and `charts` generated using `Pygal` lib: [documentation section](https://pyfpdf.github.io/fpdf2/Maths.html#using-pygal) - thanks to @ssavi-ict diff --git a/fpdf/fpdf.py b/fpdf/fpdf.py index 34ac32aba..50251cf41 100644 --- a/fpdf/fpdf.py +++ b/fpdf/fpdf.py @@ -93,7 +93,7 @@ class Image: ) # Public global variables: -FPDF_VERSION = "2.7.3" +FPDF_VERSION = "2.7.4" PAGE_FORMATS = { "a3": (841.89, 1190.55), "a4": (595.28, 841.89),