Skip to content

Commit 3e87ce1

Browse files
authored
release v2.8.7 (#1770)
1 parent 0d37af8 commit 3e87ce1

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@ 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.8.7] - Not released yet
19+
## [2.8.8] - Not released yet
20+
21+
## [2.8.7] - 2026-02-28
2022
### Fixed
21-
* types on `FPDF.title`, `FPDF.add_font()` and `FPDF.output()`
22-
* added missing files to navigation tree in mkdocs.yml
23+
* types on `FPDF.title`, `FPDF.add_font()` and `FPDF.output()`
24+
* added missing files to navigation tree in mkdocs.yml - thanks to @paulsuh
2325
### Changed
24-
* Reverted changes to `ImageInfo` that impacted user-facing API
26+
* reverted changes to `ImageInfo` that impacted user-facing API
27+
* prefer outline glyphs over bitmap if the font has both
2528

2629
## [2.8.6] - 2026-02-18
2730
### Added

docs/overrides/main.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
{% block announce %}
44
<center>
5-
<a href="https://github.com/py-pdf/fpdf2/releases/tag/2.8.6">New release: 2.8.6 on 2026/02/18</a>
5+
<a href="https://github.com/py-pdf/fpdf2/releases/tag/2.8.7">New release: 2.8.7 on 2026/02/28</a>
66
-
77
<a href="https://github.com/py-pdf/fpdf2/discussions/1430">Already a contributor? Would you like to join us as a maintainer?</a>
88
</center>

fpdf/fpdf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ class Image: # type: ignore[no-redef]
190190
from .prefs import ViewerPreferences
191191

192192
# Public global variables:
193-
FPDF_VERSION = "2.8.6"
193+
FPDF_VERSION = "2.8.7"
194194
__version__ = FPDF_VERSION
195195
PAGE_FORMATS = {
196196
"a3": (841.89, 1190.55), # 297mm × 420mm

0 commit comments

Comments
 (0)