Skip to content

Commit 86b4ebc

Browse files
committed
Version 1.22
1 parent 071a990 commit 86b4ebc

File tree

3 files changed

+39
-8
lines changed

3 files changed

+39
-8
lines changed

CHANGELOG

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
Version 1.22, 2014-05-29
2+
------------------------
3+
4+
- Added .DS_Store to .gitignore (for Mac users) (by Steve Witham)
5+
6+
- Removed __init__() implementation in NameObject (by Steve Witham)
7+
8+
- Fixed bug (inf. loop) when merging pages in Python 3 (by commx)
9+
10+
- Corrected error when calculating height in scaleTo()
11+
12+
- Removed unnecessary code from DictionaryObject (by Georges Dubus)
13+
14+
- Fixed bug where an exception was thrown upon reading a NULL string
15+
(by speedplane)
16+
17+
- Allow string literals (non-unicode strings in Python 2) to be passed
18+
to PdfFileReader
19+
20+
- Allow ConvertFunctionsToVirtualList to be indexed with slices and
21+
longs (in Python 2) (by Matt Gilson)
22+
23+
- Major improvements and bugfixes to addLink() method (see documentation
24+
in source code) (by Henry Keiter)
25+
26+
- General code clean-up and improvements (with Steve Witham and Henry Keiter)
27+
28+
- Fixed bug that caused crash when comments are present at end of
29+
dictionary
30+
31+
132
Version 1.21, 2014-04-21
233
------------------------
334

PyPDF2/_version.py

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

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66
long_description = """
77
A Pure-Python library built as a PDF toolkit. It is capable of:
88
9-
- extracting document information (title, author, ...),
10-
- splitting documents page by page,
11-
- merging documents page by page,
12-
- cropping pages,
13-
- merging multiple pages into a single page,
14-
- encrypting and decrypting PDF files.
9+
- extracting document information (title, author, ...)
10+
- splitting documents page by page
11+
- merging documents page by page
12+
- cropping pages
13+
- merging multiple pages into a single page
14+
- encrypting and decrypting PDF files
15+
- and more!
1516
1617
By being Pure-Python, it should run on any Python platform without any
1718
dependencies on external libraries. It can also work entirely on StringIO
@@ -38,7 +39,6 @@
3839
maintainer="Phaseit, Inc.",
3940
maintainer_email="PyPDF2@phaseit.net",
4041
url="http://mstamy2.github.com/PyPDF2",
41-
download_url="http://github.com/mstamy2/PyPDF2/tarball/master",
4242
classifiers = [
4343
"Development Status :: 5 - Production/Stable",
4444
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)