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 Oct 31, 2023
1 parent 3461c41 commit 9863624
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 12 deletions.
7 changes: 6 additions & 1 deletion autorelease/bindings.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
r"""Wrapper for fpdf_annot.h
Generated with:
/opt/hostedtoolcache/Python/3.10.13/x64/bin/ctypesgen --no-srcinfo --library pdfium --runtime-libdirs . --compile-libdirs ~/work/pypdfium2/pypdfium2/data/linux_x64 --headers 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/bindings.py
/opt/hostedtoolcache/Python/3.10.13/x64/bin/ctypesgen --no-srcinfo --library pdfium --runtime-libdirs . --no-load-library --headers 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/bindings/bindings.py
Do not modify this file.
"""
Expand Down Expand Up @@ -2470,6 +2470,11 @@ class struct_FPDF_FILEWRITE_ (Structure):
FPDF_StructElement_GetChildAtIndex.argtypes = [FPDF_STRUCTELEMENT, c_int]
FPDF_StructElement_GetChildAtIndex.restype = FPDF_STRUCTELEMENT

if hasattr(_lib, "FPDF_StructElement_GetChildMarkedContentID"):
FPDF_StructElement_GetChildMarkedContentID = _lib.FPDF_StructElement_GetChildMarkedContentID
FPDF_StructElement_GetChildMarkedContentID.argtypes = [FPDF_STRUCTELEMENT, c_int]
FPDF_StructElement_GetChildMarkedContentID.restype = c_int

if hasattr(_lib, "FPDF_StructElement_GetParent"):
FPDF_StructElement_GetParent = _lib.FPDF_StructElement_GetParent
FPDF_StructElement_GetParent.argtypes = [FPDF_STRUCTELEMENT]
Expand Down
4 changes: 2 additions & 2 deletions autorelease/record.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"pdfium": 6070,
"tag": "4.22.0"
"pdfium": 6097,
"tag": "4.23.0"
}
14 changes: 14 additions & 0 deletions docs/devel/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@
# Changelog


## 4.23.0 (2023-10-31)

- Updated PDFium from `6070` to `6097`.
- Fixed faulty version repr (avoid trailing `+` if desc is empty).
- Merged conda packaging code, including CI and Readme integration.
- Updated setup code, mainly to support conda.
* Independent bindings cache. Download headers from pdfium. Extract archive members explicitly.
* Cleaned up version integration of sourcebuild.
* Changed `system` platform to generate files according to given version, instead of expecting given files.
* Added `prepared!` prefix to platform spec, allowing to install with given files.
* Added `PDFIUM_BINDINGS=reference` to use pre-built bindings when installing from source.
- Updated Readme.


## 4.22.0 (2023-10-19)

- Updated PDFium from `6056` to `6070`.
Expand Down
9 changes: 0 additions & 9 deletions docs/devel/changelog_staging.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,3 @@
<!-- List character: dash (-) -->

# Changelog for next release
- Fixed faulty version repr (avoid trailing `+` if desc is empty).
- Merged conda packaging code, including CI and Readme integration.
- Updated setup code, mainly to support conda.
* Independent bindings cache. Download headers from pdfium. Extract archive members explicitly.
* Cleaned up version integration of sourcebuild.
* Changed `system` platform to generate files according to given version, instead of expecting given files.
* Added `prepared!` prefix to platform spec, allowing to install with given files.
* Added `PDFIUM_BINDINGS=reference` to use pre-built bindings when installing from source.
- Updated Readme.

0 comments on commit 9863624

Please sign in to comment.