From 3348f2155f64843285a17a93f31dbe82f3f5971c Mon Sep 17 00:00:00 2001 From: geisserml Date: Tue, 4 Apr 2023 04:01:05 +0000 Subject: [PATCH] [autorelease] update changelog and version file --- docs/devel/changelog.md | 8 ++++++++ docs/devel/changelog_staging.md | 3 --- src/pypdfium2/version.py | 4 ++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/docs/devel/changelog.md b/docs/devel/changelog.md index 0d150bf48..0d25eb81f 100644 --- a/docs/devel/changelog.md +++ b/docs/devel/changelog.md @@ -7,6 +7,14 @@ # Changelog +## 4.5.0 (2023-04-04) + +- Updated PDFium from `5677` to `5692`. +[pdfium-binaries#105]: https://github.com/bblanchon/pdfium-binaries/issues/105 +- In pdfium-binaries, form initialization for V8/XFA enabled builds has been fixed (see [pdfium-binaries#105]). + pypdfium2's support model has been updated accordingly. + + ## 4.4.0 (2023-03-28) - Updated PDFium from `5664` to `5677`. diff --git a/docs/devel/changelog_staging.md b/docs/devel/changelog_staging.md index ff13af07e..d15b83b2a 100644 --- a/docs/devel/changelog_staging.md +++ b/docs/devel/changelog_staging.md @@ -4,6 +4,3 @@ # Changelog for next release -[pdfium-binaries#105]: https://github.com/bblanchon/pdfium-binaries/issues/105 -- In pdfium-binaries, form initialization for V8/XFA enabled builds has been fixed (see [pdfium-binaries#105]). - pypdfium2's support model has been updated accordingly. diff --git a/src/pypdfium2/version.py b/src/pypdfium2/version.py index f995485a7..fc11497b5 100644 --- a/src/pypdfium2/version.py +++ b/src/pypdfium2/version.py @@ -4,7 +4,7 @@ __all__ = ["V_PYPDFIUM2", "V_LIBPDFIUM", "V_BUILDNAME", "V_PDFIUM_IS_V8"] V_MAJOR = 4 -V_MINOR = 4 +V_MINOR = 5 V_PATCH = 0 V_BETA = None @@ -14,7 +14,7 @@ V_PYPDFIUM2 += f"b{V_BETA}" #: PDFium library version string (git tag or commit hash) -V_LIBPDFIUM = "5677" +V_LIBPDFIUM = "5692" #: String describing the included PDFium binary's origin (pdfium-binaries, source) V_BUILDNAME = "pdfium-binaries"