Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
mara004 committed Apr 18, 2022
1 parent 16fcecb commit 86dfbb9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion docs/markdown/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,22 @@
# Changelog


## 1.5.0 (2022-04-18)

- Updated PDFium from `4997` to `5010`.


## 1.4.1 (2022-04-18)

- PDFium was not updated since the upstream build failed.
- Changed string formatting from `"{}".format(...)` to `"%s" % (...)`.
- Added an option to save documents at a specific PDF version.
- In `pdf_renderer.py`, notable style improvements were applied to the implementation of concurrency.
- In `render_pdf_base()`, the amount of zeros prepended to the serial number is now adaptive to the `page_indices` parameter.
- Revised parts of the documentation.
- Added a Python script to create release notes in a more flexible way in the GitHub workflow.

*After an initial build failure at pdfium-binaries, we had decided to publish a release without updating PDFium. Since the build failure was fixed shortly afterwards, there were two releases on 2022-04-18. Their support model code is identical, though.*


## 1.4.0 (2022-04-11)

Expand Down
6 changes: 3 additions & 3 deletions src/pypdfium2/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause

V_MAJOR = 1
V_MINOR = 4
V_PATCH = 1
V_MINOR = 5
V_PATCH = 0
V_BETA = None

#: pypdfium2 version string
Expand All @@ -12,4 +12,4 @@
V_PYPDFIUM2 += "b%s" % V_BETA

#: PDFium library version integer (git tag)
V_LIBPDFIUM = 4997
V_LIBPDFIUM = 5010

0 comments on commit 86dfbb9

Please sign in to comment.