Skip to content

Commit

Permalink
v2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas-C committed Oct 4, 2024
1 parent 921ad54 commit f273bd4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
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.8.0] - Not released yet
## [2.8.1] - Not released yet

## [2.8.0] - 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
Binary file modified contributors/contributors-map-small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions docs/overrides/main.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{% extends "base.html" %}

{% block announce %}
<!--center>
<a href="https://github.com/py-pdf/fpdf2/releases/tag/2.X.Y">
New release: 2.X.Y on 20YY/MM/DD
<center>
<a href="https://github.com/py-pdf/fpdf2/releases/tag/2.8.0">
New release: 2.8.0 on 2024/10/04
</a>
</center-->
</center>
{% endblock %}

{% block extrahead %}
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.7.9"
FPDF_VERSION = "2.8.0"
PAGE_FORMATS = {
"a3": (841.89, 1190.55),
"a4": (595.28, 841.89),
Expand Down

0 comments on commit f273bd4

Please sign in to comment.