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 Sep 14, 2023
1 parent 84e4d9d commit 385370b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 0 additions & 1 deletion autorelease/update_beta.txt

This file was deleted.

5 changes: 5 additions & 0 deletions docs/devel/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
# Changelog


## 4.21.0b1 (2023-09-14)

- Updated PDFium from `5989` to `6002`.


## 4.20.0 (2023-09-10)

- Updated PDFium from `5975` to `5989`.
Expand Down
6 changes: 3 additions & 3 deletions src/pypdfium2/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
__all__ = ("V_PYPDFIUM2", "V_LIBPDFIUM", "V_BUILDNAME", "V_PDFIUM_IS_V8")

V_MAJOR = 4
V_MINOR = 20
V_MINOR = 21
V_PATCH = 0
V_BETA = None
V_BETA = 1

#: pypdfium2 version string
V_PYPDFIUM2 = f"{V_MAJOR}.{V_MINOR}.{V_PATCH}"
if V_BETA is not None:
V_PYPDFIUM2 += f"b{V_BETA}"

#: PDFium library version string (git tag or commit hash)
V_LIBPDFIUM = "5989"
V_LIBPDFIUM = "6002"

#: String describing the included PDFium binary's origin (pdfium-binaries, source)
V_BUILDNAME = "pdfium-binaries"
Expand Down

0 comments on commit 385370b

Please sign in to comment.