Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Commit

Permalink
bump version to 1.2.4 and fix citeproc (#219)
Browse files Browse the repository at this point in the history
* bump version to 1.2.4

* fixed "--citeproc"
  • Loading branch information
maehr authored Oct 29, 2020
1 parent 0bc85b7 commit 5417754
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ Ubuntu 18.04
wget https://raw.githubusercontent.com/qrpike/Web-Font-Load/master/install.sh | bash
wget https://github.com/jgm/pandoc/releases/download/2.9.2/pandoc-2.9.2-1-amd64.deb
sudo dpkg -i pandoc-2.9.2-1-amd64.deb
wget -O pandoc.deb https://github.com/jgm/pandoc/releases/download/2.11.0.4/pandoc-2.11.0.4-1-amd64.deb
sudo dpkg -i pandoc.deb
pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.2
current_version = 1.2.4
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/maehr/typademic',
version='1.2.2',
version='1.2.4',
zip_safe=False,
)
2 changes: 1 addition & 1 deletion typademic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

__author__ = """Moritz Maehr"""
__email__ = 'moritz.maehr@gmail.com'
__version__ = '1.2.2'
__version__ = '1.2.4'
3 changes: 1 addition & 2 deletions typademic/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ def sh_pandoc(input_files: List[str], output_filename: str, cwd_path: str):
'markdown+tex_math_single_backslash+raw_tex+'
'table_captions+yaml_metadata_block+autolink_bare_uris',
'--pdf-engine=xelatex',
'--filter',
'pandoc-citeproc',
'--citeproc',
'--resource-path=' + cwd_path,
'--standalone',
_cwd=cwd_path)
Expand Down

0 comments on commit 5417754

Please sign in to comment.