Skip to content

Commit

Permalink
Bump version: 0.13.4 → 0.13.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ickc committed Mar 26, 2021
1 parent f45e993 commit 02fab53
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.13.4
current_version = 0.13.5
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/badges.csv
Original file line number Diff line number Diff line change
Expand Up @@ -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,"
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion src/pantable/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)
Expand Down

0 comments on commit 02fab53

Please sign in to comment.