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 Aug 22, 2022
1 parent 99e9078 commit 14c18a2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
6 changes: 0 additions & 6 deletions docs/devel/changelog_staging.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,3 @@
<!-- List character: dash (-) -->

# Changelog for next release

- Prevent wheel content from wrongly being placed in a `purelib` folder by explicitly declaring
that pypdfium2 ships with a binary extension. This is relevant for some systems to separate
platform-dependant packages from pure-python packages (i. e. `/usr/lib64` instead of `/usr/lib`).
Confer PEP 427.
- Added a new function `PdfDocument.get_version()` to obtain the PDF version of a document.
10 changes: 10 additions & 0 deletions docs/source/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@
# Changelog


## 2.11.0 (2022-08-22)

- Updated PDFium from `5241` to `5254` (autorelease).
- Prevent wheel content from wrongly being placed in a `purelib` folder by explicitly declaring
that pypdfium2 ships with a binary extension. This is relevant for some systems to separate
platform-dependant packages from pure-python packages (i. e. `/usr/lib64` instead of `/usr/lib`).
Confer PEP 427.
- Added a new function `PdfDocument.get_version()` to obtain the PDF version of a document.


## 2.10.0 (2022-08-15)

- Updated PDFium from `5226` to `5241` (autorelease).
Expand Down
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 = 2
V_MINOR = 10
V_MINOR = 11
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 = "5241"
V_LIBPDFIUM = "5254"

#: 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 14c18a2

Please sign in to comment.