Skip to content

Commit 8ffcafc

Browse files
committed
Increment version
1 parent ff13d2f commit 8ffcafc

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

docs/source/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
# Changelog
55

66

7+
## 1.11.0 (2022-06-01)
8+
9+
- Updated PDFium from `5079` to `5092`.
10+
- In the text extractor, avoid decoding errors on malformed documents by using `errors="ignore"`.
11+
12+
713
## 1.10.0 (2022-05-25)
814

915
- Updated PDFium from `5065` to `5079`.

docs/source/planned_changes.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@
33

44
# Planned Changes
55

6-
The following API-breaking changes are planned or in consideration:
7-
* Rename some utility functions or make them private.
8-
* Possibly switch to an entirely object-oriented support model to make the API cleaner.
6+
The next release will be API-breaking, switching completely to an object-oriented support model.

src/pypdfium2/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause
33

44
V_MAJOR = 1
5-
V_MINOR = 10
5+
V_MINOR = 11
66
V_PATCH = 0
77
V_BETA = None
88

@@ -12,4 +12,4 @@
1212
V_PYPDFIUM2 += "b%s" % V_BETA
1313

1414
#: PDFium library version integer (git tag)
15-
V_LIBPDFIUM = 5079
15+
V_LIBPDFIUM = 5092

0 commit comments

Comments
 (0)