diff --git a/docs/markdown/changelog.md b/docs/markdown/changelog.md index 8c8378e52..8114138c5 100644 --- a/docs/markdown/changelog.md +++ b/docs/markdown/changelog.md @@ -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. diff --git a/src/pypdfium2/_version.py b/src/pypdfium2/_version.py index f5eaf80f0..797bf48c4 100644 --- a/src/pypdfium2/_version.py +++ b/src/pypdfium2/_version.py @@ -2,7 +2,7 @@ # 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 @@ -10,4 +10,4 @@ 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)