diff --git a/bindings/raw.py b/bindings/raw.py index 4c136b72d..9e79d06f9 100644 --- a/bindings/raw.py +++ b/bindings/raw.py @@ -591,7 +591,6 @@ class struct_fpdf_pagerange_t__(Structure): class struct_fpdf_pathsegment_t(Structure): pass FPDF_PATHSEGMENT = POINTER(struct_fpdf_pathsegment_t) -FPDF_RECORDER = POINTER(None) class struct_fpdf_schhandle_t__(Structure): pass @@ -600,6 +599,7 @@ class struct_fpdf_schhandle_t__(Structure): class struct_fpdf_signature_t__(Structure): pass FPDF_SIGNATURE = POINTER(struct_fpdf_signature_t__) +FPDF_SKIA_CANVAS = POINTER(None) class struct_fpdf_structelement_t__(Structure): pass diff --git a/docs/devel/changelog.md b/docs/devel/changelog.md index d1f3ab9b3..2ffb579dd 100644 --- a/docs/devel/changelog.md +++ b/docs/devel/changelog.md @@ -7,6 +7,11 @@ # Changelog +## 4.18.0 (2023-07-04) + +- Updated PDFium from `5854` to `5868`. + + ## 4.17.0 (2023-06-27) - Updated PDFium from `5841` to `5854`. diff --git a/src/pypdfium2/version.py b/src/pypdfium2/version.py index 17e6995bd..a4f9c00bf 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 = 17 +V_MINOR = 18 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 = "5854" +V_LIBPDFIUM = "5868" #: String describing the included PDFium binary's origin (pdfium-binaries, source) V_BUILDNAME = "pdfium-binaries"