Skip to content

Commit

Permalink
release 2.7.9 (#1172)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersonhc committed May 17, 2024
1 parent 2b866d8 commit 1e366a4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,17 @@ 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.9] - Not released yet
## [2.8.0] - Not released yet
### Added

### Fixed

### Changed

### Deprecated


## [2.7.9] - 2024-05-17
### Added
* new optional parameter `repeat_headings` for [`FPDF.table()`](https://py-pdf.github.io/fpdf2/fpdf/fpdf.html#fpdf.fpdf.FPDF.table) that indicates whether to print table headings on every page
* support for overriding paragraph direction on bidirectional text
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.8">
New release: 2.7.8 on 2024/02/09
<a href="https://github.com/py-pdf/fpdf2/releases/tag/2.7.9">
New release: 2.7.9 on 2024/05/17
</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 @@ -119,7 +119,7 @@ class Image:
from .util import get_scale_factor, Padding

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

0 comments on commit 1e366a4

Please sign in to comment.