diff --git a/docs/devel/changelog.md b/docs/devel/changelog.md index 2a570a7aa..c9fc9b13e 100644 --- a/docs/devel/changelog.md +++ b/docs/devel/changelog.md @@ -4,6 +4,13 @@ # Changelog +## 3.4.0 (2022-10-17) + +- Updated PDFium from `5351` to `5364` (autorelease). +- Added a new support model `PdfImageObject` (which inherits from `PdfPageObject`). This can be used to insert a JPEG image into a page, get metadata, etc. +- Docs: The changelog page now selectively includes an entry for the next release that may be shown on `latest` builds. + + ## 3.3.0 (2022-10-10) - Updated PDFium from `5337` to `5351` (autorelease). diff --git a/docs/devel/changelog_staging.md b/docs/devel/changelog_staging.md index b3b572fe2..86674447a 100644 --- a/docs/devel/changelog_staging.md +++ b/docs/devel/changelog_staging.md @@ -4,5 +4,3 @@ # Changelog for next release -- Added a new support model `PdfImageObject` (which inherits from `PdfPageObject`). This can be used to insert a JPEG image into a page, get metadata, etc. -- Docs: The changelog page now selectively includes an entry for the next release that may be shown on `latest` builds. diff --git a/src/pypdfium2/version.py b/src/pypdfium2/version.py index 7172ae4d3..18a6d6685 100644 --- a/src/pypdfium2/version.py +++ b/src/pypdfium2/version.py @@ -4,7 +4,7 @@ __all__ = ["V_PYPDFIUM2", "V_LIBPDFIUM", "IS_SOURCEBUILD"] V_MAJOR = 3 -V_MINOR = 3 +V_MINOR = 4 V_PATCH = 0 V_BETA = None @@ -14,7 +14,7 @@ V_PYPDFIUM2 += "b%s" % V_BETA #: PDFium library version string (git tag or commit hash). -V_LIBPDFIUM = "5351" +V_LIBPDFIUM = "5364" #: Whether the included PDFium binary was built from source locally (:data:`True`) or downloaded from pdfium-binaries (:data:`False`). IS_SOURCEBUILD = False