diff --git a/docs/devel/changelog.md b/docs/devel/changelog.md index 7937f3448..d1f3ab9b3 100644 --- a/docs/devel/changelog.md +++ b/docs/devel/changelog.md @@ -7,6 +7,11 @@ # Changelog +## 4.17.0 (2023-06-27) + +- Updated PDFium from `5841` to `5854`. + + ## 4.16.0 (2023-06-20) - Updated PDFium from `5827` to `5841`. diff --git a/src/pypdfium2/version.py b/src/pypdfium2/version.py index 4581d251e..17e6995bd 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 = 16 +V_MINOR = 17 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 = "5841" +V_LIBPDFIUM = "5854" #: String describing the included PDFium binary's origin (pdfium-binaries, source) V_BUILDNAME = "pdfium-binaries"