Skip to content

Commit 652a517

Browse files
authored
Mark Release 2.7.7 (#1060)
1 parent 532c4aa commit 652a517

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ 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.7.7] - Not released yet
19+
## [2.7.8] - Not released yet
20+
21+
22+
## [2.7.7] - 2023-12-10
2023
### Added
2124
* Basic support for `<image>` elements in SVG vector graphics inserted
2225
* SVG importing now supports clipping paths, and `<defs>` tags anywhere in the SVG file - thanks to @afriedman412 - cf. [#968](https://github.com/py-pdf/fpdf2/pull/968)

docs/Development.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ Ask maintainers through comments if some errors in the pipeline seem obscure to
206206
2. bump `FPDF_VERSION` in `fpdf/fpdf.py`.
207207
Also (optionnal, once every year), update `contributors/contributors-map-small.png` based on <https://py-pdf.github.io/fpdf2/contributors.html>
208208
3. update the `announce` block in `docs/overrides/main.html` to mention the new release
209-
4. `git commit` & `git push`
209+
4. `git commit` & `git push` (if editing in a fork: submit and merge a PR)
210210
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)
211211
6. perform a [GitHub release](https://github.com/py-pdf/fpdf2/releases), taking the description from the `CHANGELOG.md`.
212212
It will create a new `git` tag.

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.7.6">
6-
New release: 2.7.6
5+
<a href="https://github.com/py-pdf/fpdf2/releases/tag/2.7.7">
6+
New release: 2.7.7
77
</a>
88
</center>
99
{% endblock %}

fpdf/fpdf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class Image:
117117
from .util import get_scale_factor, Padding
118118

119119
# Public global variables:
120-
FPDF_VERSION = "2.7.6"
120+
FPDF_VERSION = "2.7.7"
121121
PAGE_FORMATS = {
122122
"a3": (841.89, 1190.55),
123123
"a4": (595.28, 841.89),

0 commit comments

Comments
 (0)