From 652a517dffbaac4d0a242be1c26c62bc4b21f11c Mon Sep 17 00:00:00 2001 From: Georg Mischler Date: Sun, 10 Dec 2023 14:22:58 +0100 Subject: [PATCH] Mark Release 2.7.7 (#1060) --- CHANGELOG.md | 5 ++++- docs/Development.md | 2 +- docs/overrides/main.html | 4 ++-- fpdf/fpdf.py | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dc1a524b..e312f9202 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,10 @@ in order to get warned about deprecated features used in your code. This can also be enabled programmatically with `warnings.simplefilter('default', DeprecationWarning)`. -## [2.7.7] - Not released yet +## [2.7.8] - Not released yet + + +## [2.7.7] - 2023-12-10 ### Added * Basic support for `` elements in SVG vector graphics inserted * SVG importing now supports clipping paths, and `` tags anywhere in the SVG file - thanks to @afriedman412 - cf. [#968](https://github.com/py-pdf/fpdf2/pull/968) diff --git a/docs/Development.md b/docs/Development.md index aa42fd4c6..3f7a5b718 100644 --- a/docs/Development.md +++ b/docs/Development.md @@ -206,7 +206,7 @@ Ask maintainers through comments if some errors in the pipeline seem obscure to 2. bump `FPDF_VERSION` in `fpdf/fpdf.py`. Also (optionnal, once every year), update `contributors/contributors-map-small.png` based on 3. update the `announce` block in `docs/overrides/main.html` to mention the new release -4. `git commit` & `git push` +4. `git commit` & `git push` (if editing in a fork: submit and merge a PR) 5. check that [the GitHub Actions succeed](https://github.com/py-pdf/fpdf2/actions), and that [a new release appears on Pypi](https://pypi.org/project/fpdf2/#history) 6. perform a [GitHub release](https://github.com/py-pdf/fpdf2/releases), taking the description from the `CHANGELOG.md`. It will create a new `git` tag. diff --git a/docs/overrides/main.html b/docs/overrides/main.html index 5c53f1c2f..427563cce 100644 --- a/docs/overrides/main.html +++ b/docs/overrides/main.html @@ -2,8 +2,8 @@ {% block announce %}
- - New release: 2.7.6 + + New release: 2.7.7
{% endblock %} diff --git a/fpdf/fpdf.py b/fpdf/fpdf.py index b9d27848c..5b18ebd57 100644 --- a/fpdf/fpdf.py +++ b/fpdf/fpdf.py @@ -117,7 +117,7 @@ class Image: from .util import get_scale_factor, Padding # Public global variables: -FPDF_VERSION = "2.7.6" +FPDF_VERSION = "2.7.7" PAGE_FORMATS = { "a3": (841.89, 1190.55), "a4": (595.28, 841.89),