Skip to content

Commit

Permalink
Mark Release 2.7.7 (#1060)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmischler committed Dec 10, 2023
1 parent 532c4aa commit 652a517
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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 `<image>` elements in SVG vector graphics inserted
* 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)
Expand Down
2 changes: 1 addition & 1 deletion docs/Development.md
Expand Up @@ -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 <https://py-pdf.github.io/fpdf2/contributors.html>
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.
Expand Down
4 changes: 2 additions & 2 deletions docs/overrides/main.html
Expand Up @@ -2,8 +2,8 @@

{% block announce %}
<center>
<a href="https://github.com/py-pdf/fpdf2/releases/tag/2.7.6">
New release: 2.7.6
<a href="https://github.com/py-pdf/fpdf2/releases/tag/2.7.7">
New release: 2.7.7
</a>
</center>
{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion fpdf/fpdf.py
Expand Up @@ -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),
Expand Down

0 comments on commit 652a517

Please sign in to comment.