diff --git a/CHANGELOG b/CHANGELOG index c6c9f52d7..c713c6bfa 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,21 @@ +Version 2.2.0, 2022-06-13 +------------------------- + +The 2.2.0 release improves text extraction again via (#969): + +* Improvements around /Encoding / /ToUnicode +* Extraction of CMaps improved +* Fallback for font def missing +* Support for /Identity-H and /Identity-V: utf-16-be +* Support for /GB-EUC-H / /GB-EUC-V / GBp/c-EUC-H / /GBpc-EUC-V (beta release for evaluation) +* Arabic (for evaluation) +* Whitespace extraction improvements + +Those changes should mainly improve the text extraction for non-ASCII alphabets, +e.g. Russian / Chinese / Japanese / Korean / Arabic. + +Full Changelog: https://github.com/py-pdf/PyPDF2/compare/2.1.1...2.2.0 + Version 2.1.1, 2022-06-12 ------------------------- diff --git a/PyPDF2/_version.py b/PyPDF2/_version.py index 58039f505..8a124bf64 100644 --- a/PyPDF2/_version.py +++ b/PyPDF2/_version.py @@ -1 +1 @@ -__version__ = "2.1.1" +__version__ = "2.2.0"