Skip to content

Commit 4d1dd47

Browse files
committed
v2.7.4
1 parent 33b9444 commit 4d1dd47

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ in order to get warned about deprecated features used in your code.
1616

1717
This can also be enabled programmatically with `warnings.simplefilter('default', DeprecationWarning)`.
1818

19-
## [2.7.4] - Not released yet
19+
## [2.7.5] - Not released yet
20+
21+
## [2.7.4] - 2023-04-28
2022
### Added
2123
- [`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
2224
- 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

fpdf/fpdf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class Image:
9393
)
9494

9595
# Public global variables:
96-
FPDF_VERSION = "2.7.3"
96+
FPDF_VERSION = "2.7.4"
9797
PAGE_FORMATS = {
9898
"a3": (841.89, 1190.55),
9999
"a4": (595.28, 841.89),

0 commit comments

Comments
 (0)