Skip to content

Commit ab21802

Browse files
authored
REL: 5.0.1 (#2884)
## Version 5.0.1, 2024-09-29 ### New Features (ENH) - Add `full` parameter to PdfWriter constructor (#2865) ### Bug Fixes (BUG) - Update pyproject.toml with minimum Python version of 3.8 (#2859) - Cope with unbalanced delimiters in dictionary object (#2878) - Cope with encoding with too many differences (#2873) - Missing spaces in extract_text() method (#1328) (#2868) - Tolerate truncated files and no warning when jumping startxref (#2855) ### Robustness (ROB) - Repair PDF with invalid Root object (#2880) - Continue parsing dictionary object when error is detected (#2872) - Merge documents with invalid pages in named destinations (#2857) - Tolerate comments in arrays (#2856) ### Developer Experience (DEV) - Use latest Python version for benchmarking (#2879) ### Maintenance (MAINT) - Add tests to source distributions (#2874) - Refactor _update_field_annotation (#2862) [Full Changelog](5.0.0...5.0.1)
1 parent 79345ed commit ab21802

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# CHANGELOG
22

3+
## Version 5.0.1, 2024-09-29
4+
5+
### New Features (ENH)
6+
- Add `full` parameter to PdfWriter constructor (#2865)
7+
8+
### Bug Fixes (BUG)
9+
- Update pyproject.toml with minimum Python version of 3.8 (#2859)
10+
- Cope with unbalanced delimiters in dictionary object (#2878)
11+
- Cope with encoding with too many differences (#2873)
12+
- Missing spaces in extract_text() method (#1328) (#2868)
13+
- Tolerate truncated files and no warning when jumping startxref (#2855)
14+
15+
### Robustness (ROB)
16+
- Repair PDF with invalid Root object (#2880)
17+
- Continue parsing dictionary object when error is detected (#2872)
18+
- Merge documents with invalid pages in named destinations (#2857)
19+
- Tolerate comments in arrays (#2856)
20+
21+
### Developer Experience (DEV)
22+
- Use latest Python version for benchmarking (#2879)
23+
24+
### Maintenance (MAINT)
25+
- Add tests to source distributions (#2874)
26+
- Refactor _update_field_annotation (#2862)
27+
28+
[Full Changelog](https://github.com/py-pdf/pypdf/compare/5.0.0...5.0.1)
29+
330
## Version 5.0.0, 2024-09-15
431

532
This version drops support for Python 3.7 (not maintained since July 2023), PdfMerger (use PdfWriter instead) and AnnotationBuilder (use annotations instead).

pypdf/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.0.0"
1+
__version__ = "5.0.1"

0 commit comments

Comments
 (0)