Changeset 713

Show
Ignore:
Timestamp:
01/27/06 13:28:48 (3 years ago)
Author:
mfenniak
Message:

Add changelog for 1.4, update version numbers.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • pypdf/trunk/CHANGELOG

    r700 r713  
     1Version 1.4, 2006-01-27 
     2----------------------- 
     3 
     4- Add capability to merge pages from multiple PDF files into a single page 
     5  using the PageObject.mergePage function.  See example code (README or web 
     6  site) for more information. 
     7 
     8- Add ability to modify a page's MediaBox, CropBox, BleedBox, TrimBox, and 
     9  ArtBox properties through PageObject.  See example code (README or web site) 
     10  for more information. 
     11 
     12- Refactor pdf.py into multiple files: generic.py (contains objects like 
     13  NameObject, DictionaryObject), filters.py (contains filter code), 
     14  utils.py (various).  This does not affect importing PdfFileReader 
     15  or PdfFileWriter. 
     16 
     17- Add new decoding functions for standard PDF filters ASCIIHexDecode and 
     18  ASCII85Decode. 
     19 
     20- Change url and download_url to refer to new pybrary.net web site. 
     21 
     22 
    123Version 1.3, 2006-01-23 
    224----------------------- 
  • pypdf/trunk/setup.py

    r705 r713  
    1818setup( 
    1919        name="pyPdf", 
    20         version="1.3", 
     20        version="1.4", 
    2121        description="PDF toolkit", 
    2222        long_description=long_description, 
     
    2424        author_email="mfenniak@pobox.com", 
    2525        url="http://pybrary.net/pyPdf/", 
    26         download_url="http://pybrary.net/pyPdf/pyPdf-1.3.tar.gz", 
     26        download_url="http://pybrary.net/pyPdf/pyPdf-1.4.tar.gz", 
    2727        classifiers = [ 
    2828            "Development Status :: 4 - Beta",