Skip to content

Commit 34ff166

Browse files
committed
v2.7.5
1 parent fe9460c commit 34ff166

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.5] - Not released yet
19+
## [2.7.6] - Not released yet
20+
21+
## [2.7.5] - 2023-08-04
2022
### Added
2123
- [`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)
2224
- [`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

fpdf/fpdf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class Image:
8989
from .util import get_scale_factor
9090

9191
# Public global variables:
92-
FPDF_VERSION = "2.7.4"
92+
FPDF_VERSION = "2.7.5"
9393
PAGE_FORMATS = {
9494
"a3": (841.89, 1190.55),
9595
"a4": (595.28, 841.89),

0 commit comments

Comments
 (0)