Skip to content

Commit d1c218a

Browse files
committed
Version bump to 0.5.0
1 parent 738bd32 commit d1c218a

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

AUTHORS.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ Contributors
99
------------
1010

1111
* `Tomscytale <https://github.com/tomscytale>`_
12+
* `Matheus Marchini <https://github.com/mmarchini>`_
13+
* `Rory McCann <https://github.com/rory>`_

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Changelog
22
---------
3+
* `0.4.2`
4+
* Allow passing multiple css files
5+
* Fix problems with external file encodings
6+
* Rise an error when X server is missing on *nix systems
7+
* Fix tests that was broken with latest wkhtmltopdf release
8+
* Update README
39
* `0.4.1`
410
* More easier custom configuration setting
511
* Update README

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ Installation
2626
2727
$ sudo apt-get install wkhtmltopdf
2828
29-
**Warning!** Version in debian/ubuntu repos have reduced functionality (because it compiled without the wkhtmltopdf QT patches), such as adding outlines, headers, footers, TOC etc. To use this options you should install static binary from `wkhtmltopdf <http://code.google.com/p/wkhtmltopdf/>`_ site or you can use `this script <https://github.com/JazzCore/python-pdfkit/blob/master/travis/before-script.sh>`_.
29+
**Warning!** Version in debian/ubuntu repos have reduced functionality (because it compiled without the wkhtmltopdf QT patches), such as adding outlines, headers, footers, TOC etc. To use this options you should install static binary from `wkhtmltopdf <http://wkhtmltopdf.org/>`_ site or you can use `this script <https://github.com/JazzCore/python-pdfkit/blob/master/travis/before-script.sh>`_.
3030

31-
* Windows and other options: check wkhtmltopdf `homepage <http://code.google.com/p/wkhtmltopdf/>`_ for binary installers
31+
* Windows and other options: check wkhtmltopdf `homepage <http://wkhtmltopdf.org/>`_ for binary installers
3232

3333
Usage
3434
-----
@@ -64,7 +64,7 @@ If you wish to further process generated PDF, you can read it to a variable:
6464
# Use False instead of output path to save pdf to a variable
6565
pdf = pdfkit.from_url('http://google.com', False)
6666
67-
You can specify all wkhtmltopdf `options <http://madalgo.au.dk/~jakobt/wkhtmltoxdoc/wkhtmltopdf_0.10.0_rc2-doc.html>`_. You can drop '--' in option name. If option without value, use *None, False* or *''* for dict value:
67+
You can specify all wkhtmltopdf `options <http://wkhtmltopdf.org/usage/wkhtmltopdf.txt>`_. You can drop '--' in option name. If option without value, use *None, False* or *''* for dict value:
6868

6969
.. code-block:: python
7070

pdfkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""
55

66
__author__ = 'Golovanov Stanislav'
7-
__version__ = '0.4.1'
7+
__version__ = '0.4.2'
88
__license__ = 'MIT'
99

1010
from .pdfkit import PDFKit

0 commit comments

Comments
 (0)