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 24, 2022
1 parent b5560d9 commit 0599f11
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.5.0 (2022-10-24)

- Updated PDFium from `5364` to `5378` (autorelease).
- Fixed an issue with the `__new__` method of `PdfPageObject` that caused `__init__` to run twice.
- Fixed faulty examples in the Readme.


## 3.4.0 (2022-10-17)

- Updated PDFium from `5351` to `5364` (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
- Fixed an issue with the `__new__` method of `PdfPageObject` that caused `__init__` to run twice.
- Fixed faulty examples in the Readme.
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 = 4
V_MINOR = 5
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 = "5364"
V_LIBPDFIUM = "5378"

#: 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 0599f11

Please sign in to comment.