diff --git a/CHANGELOG.md b/CHANGELOG.md index b9b3165d5..b6b3294e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # CHANGELOG +## Version 2.11.2, 2022-11-20 + +### New Features (ENH) +- Add remove_from_tree (#1432) +- Add AnnotationBuilder.rectangle (#1388) + +### Bug Fixes (BUG) +- JavaScript executed twice (#1439) +- ToUnicode stores /Identity-H instead of stream (#1433) +- Declare Pillow as optional dependency (#1392) + +### Developer Experience (DEV) +- Link 'Full Changelog' automatically +- Modify read_string_from_stream to a benchmark (#1415) +- Improve error reporting of read_object (#1412) +- Test Python 3.11 (#1404) +- Extend Flake8 ignore list (#1410) +- Use correct pytest markers (#1407) +- Move project configuration to pyproject.toml (#1382) + +[Full Changelog](https://github.com/py-pdf/PyPDF2/compare/2.11.1...2.11.2) + ## Version 2.11.1, 2022-10-09 ### Bug Fixes (BUG) diff --git a/Makefile b/Makefile index 4939b7714..0414baf0b 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,6 @@ upload: flit publish clean: - python setup.py clean --all pyclean . rm -rf tests/__pycache__ PyPDF2/__pycache__ Image9.png htmlcov docs/_build dist dont_commit_merged.pdf dont_commit_writer.pdf PyPDF2.egg-info PyPDF2_pdfLocation.txt .pytest_cache .mypy_cache .benchmarks diff --git a/PyPDF2/_version.py b/PyPDF2/_version.py index 200c23630..b144122e9 100644 --- a/PyPDF2/_version.py +++ b/PyPDF2/_version.py @@ -1 +1 @@ -__version__ = "2.11.1" +__version__ = "2.11.2"