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 17, 2022
1 parent 1c6bde4 commit 75a3854
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 7 additions & 0 deletions docs/devel/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 0 additions & 2 deletions docs/devel/changelog_staging.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@
<!-- List character: dash (-) -->

# 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.
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", "IS_SOURCEBUILD"]

V_MAJOR = 3
V_MINOR = 3
V_MINOR = 4
V_PATCH = 0
V_BETA = None

Expand All @@ -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

0 comments on commit 75a3854

Please sign in to comment.