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 24, 2022
1 parent 75b972c commit 03b379f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion autorelease/update_beta.txt

This file was deleted.

1 change: 0 additions & 1 deletion autorelease/update_major.txt

This file was deleted.

8 changes: 4 additions & 4 deletions src/pypdfium2/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@

__all__ = ["V_PYPDFIUM2", "V_LIBPDFIUM", "IS_SOURCEBUILD"]

V_MAJOR = 2
V_MINOR = 11
V_MAJOR = 3
V_MINOR = 0
V_PATCH = 0
V_BETA = None
V_BETA = 1

#: pypdfium2 version string.
V_PYPDFIUM2 = "%s.%s.%s" % (V_MAJOR, V_MINOR, V_PATCH)
if V_BETA is not None:
V_PYPDFIUM2 += "b%s" % V_BETA

#: PDFium library version string (git tag or commit hash).
V_LIBPDFIUM = "5254"
V_LIBPDFIUM = "5316"

#: 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 03b379f

Please sign in to comment.