Skip to content

Commit

Permalink
v2.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas-C committed Oct 4, 2024
1 parent f273bd4 commit 7784099
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This can also be enabled programmatically with `warnings.simplefilter('default',

## [2.8.1] - Not released yet

## [2.8.0] - 2024-10-04
## [2.8.1] - 2024-10-04
### Added
* support for escape character for markers in markdown text [issue #1215](https://github.com/py-pdf/fpdf2/issues/1215)
* Wrapping words on spaces now considers all common space symbols in addition to regular spaces (' '), addressing issues with word-wrapping for languages like Thai, as per [#1190](https://github.com/py-pdf/fpdf2/issues/1190) and [#1191](https://github.com/py-pdf/fpdf2/pull/1191).
Expand Down Expand Up @@ -60,6 +60,12 @@ This can also be enabled programmatically with `warnings.simplefilter('default',
- New translation of the tutorial in Türkçe, thanks to @natgho: [Türkçe](https://py-pdf.github.io/fpdf2/Tutorial-tr.html);
* Clarified usage of the `style` attribute in [`FPDF.add_font()`](https://py-pdf.github.io/fpdf2/fpdf/fpdf.html#fpdf.fpdf.FPDF.add_font)

## [2.8.0] - 2024-10-04
This version was only uploaded a few minutes on [Pypi](https://pypi.org/),
and then deleted manually by a maintainer, erroneously fearing a regression.

Version 2.8.1 is exactly similar.

## [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
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.8.0">
New release: 2.8.0 on 2024/10/04
<a href="https://github.com/py-pdf/fpdf2/releases/tag/2.8.1">
New release: 2.8.1 on 2024/10/04
</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 @@ -120,7 +120,7 @@ class Image:
from .util import get_scale_factor, Padding

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

0 comments on commit 7784099

Please sign in to comment.