Skip to content

Commit 83bbfc2

Browse files
committed
Versioning for 1.19
1 parent 5141360 commit 83bbfc2

File tree

2 files changed

+57
-16
lines changed

2 files changed

+57
-16
lines changed

CHANGELOG

Lines changed: 56 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,69 @@
1+
Version 1.19, 2013-10-08
2+
------------------------
3+
4+
BUGFIXES:
5+
- Removed pop in sweepIndirectReferences to prevent infinite loop
6+
(provided by ian-su-sirca)
7+
8+
- Fixed bug caused by whitespace when parsing PDFs generated by AutoCad
9+
10+
- Fixed a bug caused by reading a 'null' ASCII value in a dictionary
11+
object (primarily in PDFs generated by AutoCad).
12+
13+
FEATURES:
14+
- Added new folders for PyPDF2 sample code and example PDFs; see README
15+
for each folder
16+
17+
- Added a method for debugging purposes to show current location while
18+
parsing
19+
20+
- Ability to create custom metadata (by jamma313)
21+
22+
- Ability to access and customize document layout and view mode
23+
(by Joshua Arnott)
24+
25+
OTHER:
26+
- Added and corrected some documentation
27+
28+
- Added some more warnings and exception messages
29+
30+
- Removed old test/debugging code
31+
32+
UPCOMING:
33+
- More bugfixes (We have received many problematic PDFs via email, we
34+
will work with them)
35+
36+
- Documentation - It's time for PyPDF2 to get its own documentation
37+
since it has grown much since the original pyPdf
38+
39+
- A FAQ to answer common questions
40+
41+
142
Version 1.18, 2013-08-19
2-
---------------------------
43+
------------------------
344

4-
- Fixed a bug where older verions of objects were incorrectly added to the
5-
cache, resulting in outdated or missing pages, images, and other objects
6-
(from speedplane)
45+
- Fixed a bug where older verions of objects were incorrectly added to the
46+
cache, resulting in outdated or missing pages, images, and other objects
47+
(from speedplane)
748

8-
- Fixed a bug in parsing the xref table where new xref values were
9-
overwritten; also cleaned up code (from speedplane)
49+
- Fixed a bug in parsing the xref table where new xref values were
50+
overwritten; also cleaned up code (from speedplane)
1051

11-
- New method mergeRotatedAroundPointPage which merges a page while rotating
12-
it around a point (from speedplane)
52+
- New method mergeRotatedAroundPointPage which merges a page while rotating
53+
it around a point (from speedplane)
1354

14-
- Updated Destination syntax to respect PDF 1.6 specifications (from
15-
jamma313)
55+
- Updated Destination syntax to respect PDF 1.6 specifications (from
56+
jamma313)
1657

17-
- Prevented infinite loop when a PdfFileReader object was instantiated
18-
with an empty file (from Jerome Nexedi)
58+
- Prevented infinite loop when a PdfFileReader object was instantiated
59+
with an empty file (from Jerome Nexedi)
1960

2061
Other Changes:
2162

22-
- Downloads now available via PyPI
23-
https://pypi.python.org/pypi?:action=display&name=PyPDF2
63+
- Downloads now available via PyPI
64+
https://pypi.python.org/pypi?:action=display&name=PyPDF2
2465

25-
- Installation through pip library is fixed
66+
- Installation through pip library is fixed
2667

2768

2869
Version 1.17, 2013-07-25

PyPDF2/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '1.18'
1+
__version__ = '1.19'
22

0 commit comments

Comments
 (0)