Skip to content

Commit

Permalink
v2.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas-C committed Apr 28, 2023
1 parent 33b9444 commit 4d1dd47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion fpdf/fpdf.py
Expand Up @@ -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),
Expand Down

0 comments on commit 4d1dd47

Please sign in to comment.