diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 836ab661..d79342c9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.13.4 +current_version = 0.13.5 commit = True tag = True diff --git a/README.rst b/README.rst index 10f597c1..a7aa9861 100644 --- a/README.rst +++ b/README.rst @@ -532,8 +532,8 @@ The followings are pandoc filters written in Haskell that provide similar functi :target: https://pypi.python.org/pypi/pantable/ .. |Downloads| image:: https://img.shields.io/pypi/dm/pantable.svg :target: https://pypi.python.org/pypi/pantable/ -.. |Commits since latest release| image:: https://img.shields.io/github/commits-since/ickc/pantable/v0.13.4.svg - :target: https://github.com/ickc/pantable/compare/v0.13.4...master +.. |Commits since latest release| image:: https://img.shields.io/github/commits-since/ickc/pantable/v0.13.5.svg + :target: https://github.com/ickc/pantable/compare/v0.13.5...master .. |License| image:: https://img.shields.io/pypi/l/pantable.svg .. |Conda Recipe| image:: https://img.shields.io/badge/recipe-pantable-green.svg :target: https://anaconda.org/conda-forge/pantable diff --git a/docs/badges.csv b/docs/badges.csv index a7a35f76..0d39db7e 100644 --- a/docs/badges.csv +++ b/docs/badges.csv @@ -21,7 +21,7 @@ package," [![Development Status](https://img.shields.io/pypi/status/pantable.svg)](https://pypi.python.org/pypi/pantable/) [![Downloads](https://img.shields.io/pypi/dm/pantable.svg)](https://pypi.python.org/pypi/pantable/) -[![Commits since latest release](https://img.shields.io/github/commits-since/ickc/pantable/v0.13.4.svg)](https://github.com/ickc/pantable/compare/v0.13.4...master) +[![Commits since latest release](https://img.shields.io/github/commits-since/ickc/pantable/v0.13.5.svg)](https://github.com/ickc/pantable/compare/v0.13.5...master) ![License](https://img.shields.io/pypi/l/pantable.svg) " conda-forge," diff --git a/docs/conf.py b/docs/conf.py index c19e48e3..feeec18e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ year = "2016-2020" author = "Kolen Cheung" copyright = f"{year}, {author}" -version = release = "0.13.4" +version = release = "0.13.5" pygments_style = "solarizedlight" html_theme = "bootstrap" diff --git a/makefile b/makefile index 60a8f7ef..7cfa86bf 100644 --- a/makefile +++ b/makefile @@ -53,7 +53,7 @@ Clean: clean # Deploy to PyPI ## by CI, properly git tagged pypi: - git push origin v0.13.4 + git push origin v0.13.5 ## Manually pypiManual: rm -rf dist @@ -109,9 +109,9 @@ dist/epub/pantable.epub: docs # temporary remove pyproject.toml and ask pip to install from setup.py instead. editable: poetry build - cd dist; tar -xf pantable-0.13.4.tar.gz pantable-0.13.4/setup.py - mv dist/pantable-0.13.4/setup.py . - rm -rf dist/pantable-0.13.4 + cd dist; tar -xf pantable-0.13.5.tar.gz pantable-0.13.5/setup.py + mv dist/pantable-0.13.5/setup.py . + rm -rf dist/pantable-0.13.5 mv pyproject.toml .pyproject.toml $(_python) -m pip install -e .$(EXTRAS); mv .pyproject.toml pyproject.toml diff --git a/pyproject.toml b/pyproject.toml index 51a38bb0..72616cd6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pantable" -version = "0.13.4" +version = "0.13.5" description = "A Python library for writing pandoc filters for tables with batteries included." license = "BSD-3-Clause" keywords = [ diff --git a/src/pantable/__init__.py b/src/pantable/__init__.py index 3cbac343..f263b5cf 100755 --- a/src/pantable/__init__.py +++ b/src/pantable/__init__.py @@ -7,7 +7,7 @@ except ImportError: from logging import Formatter -__version__ = '0.13.4' +__version__ = '0.13.5' PY37 = sys.version_info.minor == 7 logger = logging.getLogger(__name__)