Skip to content

Commit

Permalink
release v2.7.8 (py-pdf#1110)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersonhc committed Feb 10, 2024
1 parent f03b3b1 commit 1bd4548
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@ 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.8] - Not released yet
## [2.7.9] - Not released yet
### Added

### Fixed

### Changed


## [2.7.8] - 2024-02-09
### Added
* support for `<path>` elements in SVG `<clipPath>` elements
* support for `bidirectional` text shaping - thanks to @andersonhc
Expand Down
4 changes: 2 additions & 2 deletions docs/overrides/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

{% block announce %}
<center>
<a href="https://github.com/py-pdf/fpdf2/releases/tag/2.7.7">
New release: 2.7.7 on 2023/12/10
<a href="https://github.com/py-pdf/fpdf2/releases/tag/2.7.8">
New release: 2.7.8 on 2024/02/09
</a>
</center>
{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion fpdf/fpdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class Image:
from .util import get_scale_factor, Padding

# Public global variables:
FPDF_VERSION = "2.7.7"
FPDF_VERSION = "2.7.8"
PAGE_FORMATS = {
"a3": (841.89, 1190.55),
"a4": (595.28, 841.89),
Expand Down

0 comments on commit 1bd4548

Please sign in to comment.