Skip to content

Commit

Permalink
Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
mara004 committed Mar 28, 2022
1 parent bdde03a commit e34986f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/markdown/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
# Changelog


## 1.2.0 (scheduled for 2022-03-28)
## 1.2.0 (2022-03-28)

- Updated PDFium from `4955` to `XXXX`.
- Updated PDFium from `4955` to `4969`.
- Fixed running `setup.py` on Windows by not using `os.mknod()`, which is only available on Unix-like systems.
- Addressed some Windows-specific issues with the build script.

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

V_MAJOR = 1
V_MINOR = 1
V_MINOR = 2
V_PATCH = 0
V_BETA = None

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

V_LIBPDFIUM = 4955 #: PDFium library version integer (git tag)
V_LIBPDFIUM = 4969 #: PDFium library version integer (git tag)

0 comments on commit e34986f

Please sign in to comment.