From 4018c9c1a887b66e0c1961eb48d1c2dac2cf5088 Mon Sep 17 00:00:00 2001 From: geisserml Date: Tue, 28 Mar 2023 04:01:32 +0000 Subject: [PATCH] [autorelease] update changelog and version file --- bindings/raw.py | 20 ++++++++++---------- docs/devel/changelog.md | 5 +++++ src/pypdfium2/version.py | 4 ++-- 3 files changed, 17 insertions(+), 12 deletions(-) diff --git a/bindings/raw.py b/bindings/raw.py index 85afd3084..fe7f4c885 100644 --- a/bindings/raw.py +++ b/bindings/raw.py @@ -1,7 +1,7 @@ r"""Wrapper for fpdf_annot.h Generated with: -~/.local/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 ~/projects/pypdfium2/data/linux_x64/raw.py +/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 Do not modify this file. """ @@ -2339,19 +2339,19 @@ class struct__FX_DOWNLOADHINTS(Structure): FPDF_GetPageLabel.argtypes = [FPDF_DOCUMENT, c_int, POINTER(None), c_ulong] FPDF_GetPageLabel.restype = c_ulong -__uint8_t = c_ubyte # /usr/include/bits/types.h: 38 +__uint8_t = c_ubyte # /usr/include/x86_64-linux-gnu/bits/types.h: 38 -__uint16_t = c_ushort # /usr/include/bits/types.h: 40 +__uint16_t = c_ushort # /usr/include/x86_64-linux-gnu/bits/types.h: 40 -__uint32_t = c_uint # /usr/include/bits/types.h: 42 +__uint32_t = c_uint # /usr/include/x86_64-linux-gnu/bits/types.h: 42 -__time_t = c_long # /usr/include/bits/types.h: 160 +__time_t = c_long # /usr/include/x86_64-linux-gnu/bits/types.h: 160 -uint8_t = __uint8_t # /usr/include/bits/stdint-uintn.h: 24 +uint8_t = __uint8_t # /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: 24 -uint16_t = __uint16_t # /usr/include/bits/stdint-uintn.h: 25 +uint16_t = __uint16_t # /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: 25 -uint32_t = __uint32_t # /usr/include/bits/stdint-uintn.h: 26 +uint32_t = __uint32_t # /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: 26 # fpdf_edit.h: 93 class struct_FPDF_IMAGEOBJ_METADATA(Structure): @@ -2996,9 +2996,9 @@ class struct_FPDF_IMAGEOBJ_METADATA(Structure): FPDFFormObj_GetObject.argtypes = [FPDF_PAGEOBJECT, c_ulong] FPDFFormObj_GetObject.restype = FPDF_PAGEOBJECT -time_t = __time_t # /usr/include/bits/types/time_t.h: 10 +time_t = __time_t # /usr/include/x86_64-linux-gnu/bits/types/time_t.h: 10 -# /usr/include/bits/types/struct_tm.h: 7 +# /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h: 7 class struct_tm(Structure): pass diff --git a/docs/devel/changelog.md b/docs/devel/changelog.md index 8f2c37d32..20e6447b4 100644 --- a/docs/devel/changelog.md +++ b/docs/devel/changelog.md @@ -7,6 +7,11 @@ # Changelog +## 4.4.0 (2023-03-28) + +- Updated PDFium from `5664` to `5677`. + + ## 4.3.0 (2023-03-21) - Updated PDFium from `5648` to `5664`. diff --git a/src/pypdfium2/version.py b/src/pypdfium2/version.py index 6f59fbe97..f995485a7 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 = 3 +V_MINOR = 4 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 = "5664" +V_LIBPDFIUM = "5677" #: String describing the included PDFium binary's origin (pdfium-binaries, source) V_BUILDNAME = "pdfium-binaries"