Skip to content

Commit b9cfbb6

Browse files
committed
v2.8.2
1 parent eeef988 commit b9cfbb6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ 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.2] - Not released yet
19+
## [2.8.2] - 2024-12-16
2020
### Added
2121
* new optional parameter `border` for table cells: users can define specific borders (left, right, top, bottom) for individual cells - [issue #1192](https://github.com/py-pdf/fpdf2/issues/1192)
2222
* [`FPDF.write_html()`](https://py-pdf.github.io/fpdf2/fpdf/fpdf.html#fpdf.fpdf.FPDF.write_html): now parses `<title>` tags to set the [document title](https://py-pdf.github.io/fpdf2/fpdf/fpdf.html#fpdf.fpdf.FPDF.set_title). By default, it is added as PDF metadata, but not rendered in the document body. However, this can be enabled by passing `render_title_tag=True` to `FPDF.write_html()`.

docs/overrides/main.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
{% block announce %}
44
<center>
5-
<a href="https://github.com/py-pdf/fpdf2/releases/tag/2.8.1">
6-
New release: 2.8.1 on 2024/10/04
5+
<a href="https://github.com/py-pdf/fpdf2/releases/tag/2.8.2">
6+
New release: 2.8.2 on 2024/12/16
77
</a>
88
</center>
99
{% endblock %}

fpdf/fpdf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class Image:
137137
from .util import get_scale_factor, Padding
138138

139139
# Public global variables:
140-
FPDF_VERSION = "2.8.1"
140+
FPDF_VERSION = "2.8.2"
141141
PAGE_FORMATS = {
142142
"a3": (841.89, 1190.55),
143143
"a4": (595.28, 841.89),

0 commit comments

Comments
 (0)