From fb9f343e70632d8fb564a6a2d256cf1f44dd7ac4 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Tue, 3 Oct 2023 15:43:13 +0200 Subject: [PATCH] Version 1.1.0 --- docs/changelog.rst | 11 +++++++++++ flask_weasyprint/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index d17bcb8..a5c8ef8 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,17 @@ Changelog ========= +Version 1.1.0 +~~~~~~~~~~~~~ + +Released on 2023-10-03. + +Drop support of Python 3.7, support Python 3.12. Requires Flask >= 2.3.0 and +WeasyPrint >= 53.0. + +Allow extra rendering options in render_pdf(). + + Version 1.0.0 ~~~~~~~~~~~~~ diff --git a/flask_weasyprint/__init__.py b/flask_weasyprint/__init__.py index 8d6c39b..ee34fe6 100644 --- a/flask_weasyprint/__init__.py +++ b/flask_weasyprint/__init__.py @@ -7,7 +7,7 @@ from werkzeug.test import Client, ClientRedirectError, EnvironBuilder from werkzeug.wrappers import Response -VERSION = __version__ = '1.0.0' +VERSION = __version__ = '1.1.0' DEFAULT_PORTS = (('http', 80), ('https', 443))