Skip to content

Commit

Permalink
[autorelease] update changelog and version file
Browse files Browse the repository at this point in the history
  • Loading branch information
mara004 committed Jun 6, 2023
1 parent 69b3880 commit e011ddd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
10 changes: 5 additions & 5 deletions bindings/raw.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,11 +743,6 @@ class struct__FS_QUADPOINTSF(Structure):
FPDF_ANNOTATION_SUBTYPE = c_int
FPDF_ANNOT_APPEARANCEMODE = c_int
FPDF_OBJECT_TYPE = c_int

if _libs["pdfium"].has("FPDF_InitLibrary", "cdecl"):
FPDF_InitLibrary = _libs["pdfium"].get("FPDF_InitLibrary", "cdecl")
FPDF_InitLibrary.argtypes = []
FPDF_InitLibrary.restype = None
enum_anon_3 = c_int
FPDF_RENDERERTYPE_AGG = 0
FPDF_RENDERERTYPE_SKIA = 1
Expand Down Expand Up @@ -778,6 +773,11 @@ class struct_FPDF_LIBRARY_CONFIG_(Structure):
FPDF_InitLibraryWithConfig.argtypes = [POINTER(FPDF_LIBRARY_CONFIG)]
FPDF_InitLibraryWithConfig.restype = None

if _libs["pdfium"].has("FPDF_InitLibrary", "cdecl"):
FPDF_InitLibrary = _libs["pdfium"].get("FPDF_InitLibrary", "cdecl")
FPDF_InitLibrary.argtypes = []
FPDF_InitLibrary.restype = None

if _libs["pdfium"].has("FPDF_DestroyLibrary", "cdecl"):
FPDF_DestroyLibrary = _libs["pdfium"].get("FPDF_DestroyLibrary", "cdecl")
FPDF_DestroyLibrary.argtypes = []
Expand Down
5 changes: 5 additions & 0 deletions docs/devel/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
# Changelog


## 4.14.0 (2023-06-06)

- Updated PDFium from `5799` to `5813`.


## 4.13.0 (2023-05-30)

- Updated PDFium from `5786` to `5799`.
Expand Down
4 changes: 2 additions & 2 deletions src/pypdfium2/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__all__ = ["V_PYPDFIUM2", "V_LIBPDFIUM", "V_BUILDNAME", "V_PDFIUM_IS_V8"]

V_MAJOR = 4
V_MINOR = 13
V_MINOR = 14
V_PATCH = 0
V_BETA = None

Expand All @@ -14,7 +14,7 @@
V_PYPDFIUM2 += f"b{V_BETA}"

#: PDFium library version string (git tag or commit hash)
V_LIBPDFIUM = "5799"
V_LIBPDFIUM = "5813"

#: String describing the included PDFium binary's origin (pdfium-binaries, source)
V_BUILDNAME = "pdfium-binaries"
Expand Down

0 comments on commit e011ddd

Please sign in to comment.