From fb717771b9c25af8359d4a48e9f2f8350135a1f3 Mon Sep 17 00:00:00 2001 From: geisserml Date: Tue, 18 Apr 2023 04:01:24 +0000 Subject: [PATCH] [autorelease] update changelog and version file --- bindings/raw.py | 2 +- docs/devel/changelog.md | 6 ++++++ docs/devel/changelog_staging.md | 1 - src/pypdfium2/version.py | 4 ++-- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/bindings/raw.py b/bindings/raw.py index fe7f4c885..15c14a1c1 100644 --- a/bindings/raw.py +++ b/bindings/raw.py @@ -1,7 +1,7 @@ r"""Wrapper for fpdf_annot.h Generated with: -/opt/hostedtoolcache/Python/3.10.10/x64/bin/ctypesgen --library pdfium --runtime-libdir . ./fpdf_annot.h ./fpdf_attachment.h ./fpdf_catalog.h ./fpdf_dataavail.h ./fpdf_doc.h ./fpdf_edit.h ./fpdf_ext.h ./fpdf_flatten.h ./fpdf_formfill.h ./fpdf_fwlevent.h ./fpdf_javascript.h ./fpdf_ppo.h ./fpdf_progressive.h ./fpdf_save.h ./fpdf_searchex.h ./fpdf_signature.h ./fpdf_structtree.h ./fpdf_sysfontinfo.h ./fpdf_text.h ./fpdf_thumbnail.h ./fpdf_transformpage.h ./fpdfview.h -o ~/work/pypdfium2/pypdfium2/data/linux_x64/raw.py +/opt/hostedtoolcache/Python/3.10.11/x64/bin/ctypesgen --library pdfium --runtime-libdir . ./fpdf_annot.h ./fpdf_attachment.h ./fpdf_catalog.h ./fpdf_dataavail.h ./fpdf_doc.h ./fpdf_edit.h ./fpdf_ext.h ./fpdf_flatten.h ./fpdf_formfill.h ./fpdf_fwlevent.h ./fpdf_javascript.h ./fpdf_ppo.h ./fpdf_progressive.h ./fpdf_save.h ./fpdf_searchex.h ./fpdf_signature.h ./fpdf_structtree.h ./fpdf_sysfontinfo.h ./fpdf_text.h ./fpdf_thumbnail.h ./fpdf_transformpage.h ./fpdfview.h -o ~/work/pypdfium2/pypdfium2/data/linux_x64/raw.py Do not modify this file. """ diff --git a/docs/devel/changelog.md b/docs/devel/changelog.md index 18b2ca00e..1abbda6ae 100644 --- a/docs/devel/changelog.md +++ b/docs/devel/changelog.md @@ -7,6 +7,12 @@ # Changelog +## 4.7.0 (2023-04-18) + +- Updated PDFium from `5705` to `5715`. +- Fixed `PdfPage.remove_obj()` wrongly retaining the page as parent in the finalizer hierarchy. + + ## 4.6.0 (2023-04-11) - Updated PDFium from `5692` to `5705`. diff --git a/docs/devel/changelog_staging.md b/docs/devel/changelog_staging.md index a3f44e148..d15b83b2a 100644 --- a/docs/devel/changelog_staging.md +++ b/docs/devel/changelog_staging.md @@ -4,4 +4,3 @@ # Changelog for next release -- Fixed `PdfPage.remove_obj()` wrongly retaining the page as parent in the finalizer hierarchy. diff --git a/src/pypdfium2/version.py b/src/pypdfium2/version.py index 95d518267..61918fc5f 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 = 6 +V_MINOR = 7 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 = "5705" +V_LIBPDFIUM = "5715" #: String describing the included PDFium binary's origin (pdfium-binaries, source) V_BUILDNAME = "pdfium-binaries"