From 14c18a2dc0466668b12772133917522fc7a6b1e7 Mon Sep 17 00:00:00 2001 From: geisserml Date: Mon, 22 Aug 2022 10:18:34 +0000 Subject: [PATCH] [autorelease] update changelog and version file --- docs/devel/changelog_staging.md | 6 ------ docs/source/changelog.md | 10 ++++++++++ src/pypdfium2/version.py | 4 ++-- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/docs/devel/changelog_staging.md b/docs/devel/changelog_staging.md index 1a0e641f9..86674447a 100644 --- a/docs/devel/changelog_staging.md +++ b/docs/devel/changelog_staging.md @@ -4,9 +4,3 @@ # 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. diff --git a/docs/source/changelog.md b/docs/source/changelog.md index b1386ab6b..8932b87d3 100644 --- a/docs/source/changelog.md +++ b/docs/source/changelog.md @@ -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). diff --git a/src/pypdfium2/version.py b/src/pypdfium2/version.py index 749ae02cb..985d454cd 100644 --- a/src/pypdfium2/version.py +++ b/src/pypdfium2/version.py @@ -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 @@ -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