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 Feb 28, 2023
1 parent a6d43a7 commit cd79ac2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
12 changes: 12 additions & 0 deletions docs/devel/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@
# Changelog


## 4.0.0 (2023-02-28)

- Updated PDFium from `5579` to `5619` (autorelease).
- Full support model rewrite. Many existing features changed and new helpers added. Numerous bugs fixed on the way.
Read the updated documentation to migrate your code.
- The raw API is now isolated in a separate namespace (`pypdfium2.raw`).
Moreover, the raw API bindings do not implicitly encode strings anymore (pypdfium2 is now built with a patched version of ctypesgen by default).
- Helper objects now automatically resolve to the underlying raw object if used as ctypes function parameter.
- Improved command-line interface.
- Improved documentation.


## 4.0.0b2 (2023-02-23)

- No PDFium update (autorelease).
Expand Down
8 changes: 0 additions & 8 deletions docs/devel/changelog_staging.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,3 @@
<!-- List character: dash (-) -->

# Changelog for next release

- Full support model rewrite. Many existing features changed and new helpers added. Numerous bugs fixed on the way.
Read the updated documentation to migrate your code.
- The raw API is now isolated in a separate namespace (`pypdfium2.raw`).
Moreover, the raw API bindings do not implicitly encode strings anymore (pypdfium2 is now built with a patched version of ctypesgen by default).
- Helper objects now automatically resolve to the underlying raw object if used as ctypes function parameter.
- Improved command-line interface.
- Improved documentation.
4 changes: 2 additions & 2 deletions src/pypdfium2/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
V_MAJOR = 4
V_MINOR = 0
V_PATCH = 0
V_BETA = 2
V_BETA = None

#: pypdfium2 version string
V_PYPDFIUM2 = f"{V_MAJOR}.{V_MINOR}.{V_PATCH}"
if V_BETA is not None:
V_PYPDFIUM2 += f"b{V_BETA}"

#: PDFium library version string (git tag or commit hash)
V_LIBPDFIUM = "5579"
V_LIBPDFIUM = "5619"

#: String describing the included PDFium binary's origin (pdfium-binaries, sourcebuild)
V_BUILDNAME = "pdfium-binaries"
Expand Down

0 comments on commit cd79ac2

Please sign in to comment.