Skip to content

Commit f4eabac

Browse files
authored
Merge pull request #129 from ickc/bump-version
version bumped, README reflect change in new version
2 parents bb0af49 + a5ca3dc commit f4eabac

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

‎README.md‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ download_pandoc()
6868
The default install location is included in the search path for pandoc, so you
6969
don't need to add it to the `PATH`.
7070

71+
By default, the latest pandoc version is installed. If you want to specify your own version, say 1.19.1, use `download_pandoc(version='1.19.1')` instead.
72+
7173
#### Installing pandoc manually
7274

7375
Installing manually via the system mechanism is also possible. Such installation mechanism
@@ -245,7 +247,7 @@ Note that for citeproc tests to pass you'll need to have [pandoc-citeproc](https
245247
* [Cyrille Rossant](https://github.com/rossant) - Fixed bug by trimming out stars in the list of pandoc formats. Helped to fix the Travis build.
246248
* [Paul Osborne](https://github.com/posborne) - Don't require pandoc to install pypandoc.
247249
* [Felix Yan](https://github.com/felixonmars) - Added installation instructions for Arch Linux.
248-
* [Kolen Cheung](https://github.com/ickc) - Implement `_get_pandoc_urls` for installing arbitrary version as well as the latest version of pandoc.
250+
* [Kolen Cheung](https://github.com/ickc) - Implement `_get_pandoc_urls` for installing arbitrary version as well as the latest version of pandoc. Minor: README, Travis, setup.py.
249251

250252
## License
251253

‎pypandoc/__init__.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from pypandoc.pandoc_download import DEFAULT_TARGET_FOLDER, download_pandoc
1515

1616
__author__ = u'Juho Vepsäläinen'
17-
__version__ = '1.3.2'
17+
__version__ = '1.4'
1818
__license__ = 'MIT'
1919
__all__ = ['convert', 'convert_file', 'convert_text',
2020
'get_pandoc_formats', 'get_pandoc_version', 'get_pandoc_path',

0 commit comments

Comments
 (0)