diff --git a/CHANGELOG.md b/CHANGELOG.md
index e9e66a348..b3e517c2f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -16,7 +16,7 @@ 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.2] - Not released yet
+## [2.8.2] - 2024-12-16
### Added
* 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)
* [`FPDF.write_html()`](https://py-pdf.github.io/fpdf2/fpdf/fpdf.html#fpdf.fpdf.FPDF.write_html): now parses `
` 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()`.
diff --git a/docs/overrides/main.html b/docs/overrides/main.html
index abcdd21c0..bb419112f 100644
--- a/docs/overrides/main.html
+++ b/docs/overrides/main.html
@@ -2,8 +2,8 @@
{% block announce %}
-
- New release: 2.8.1 on 2024/10/04
+
+ New release: 2.8.2 on 2024/12/16
{% endblock %}
diff --git a/fpdf/fpdf.py b/fpdf/fpdf.py
index 6ebe1e756..d1c4e93c3 100644
--- a/fpdf/fpdf.py
+++ b/fpdf/fpdf.py
@@ -137,7 +137,7 @@ class Image:
from .util import get_scale_factor, Padding
# Public global variables:
-FPDF_VERSION = "2.8.1"
+FPDF_VERSION = "2.8.2"
PAGE_FORMATS = {
"a3": (841.89, 1190.55),
"a4": (595.28, 841.89),