Skip to content

Commit

Permalink
Bump version: 0.13.1 → 0.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ickc committed Dec 20, 2020
1 parent 343b1d7 commit 3a4b22b
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 13 deletions.
3 changes: 1 addition & 2 deletions .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.13.1
current_version = 0.13.2
commit = True
tag = True

Expand All @@ -15,7 +15,6 @@ replace = {new_version}
search = v{current_version}.
replace = v{new_version}.

# this is generated from badges.csv above
[bumpversion:file:README.rst]
search = v{current_version}.
replace = v{new_version}.
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -525,8 +525,8 @@ The followings are pandoc filters written in Haskell that provide similar functi
:target: https://pypi.org/project/pantable
.. |Supported implementations| image:: https://img.shields.io/pypi/implementation/pantable.svg
:target: https://pypi.org/project/pantable
.. |Commits since latest release| image:: https://img.shields.io/github/commits-since/ickc/pantable/v0.13.1.svg
:target: https://github.com/ickc/pantable/compare/v0.13.1...master
.. |Commits since latest release| image:: https://img.shields.io/github/commits-since/ickc/pantable/v0.13.2.svg
:target: https://github.com/ickc/pantable/compare/v0.13.2...master
.. |Development Status| image:: https://img.shields.io/pypi/status/pantable.svg
:target: https://pypi.python.org/pypi/pantable/
.. |Downloads| image:: https://img.shields.io/pypi/dm/pantable.svg
Expand Down
2 changes: 1 addition & 1 deletion docs/badges.csv
Expand Up @@ -12,7 +12,7 @@ package,"| [![GitHub Releases](https://img.shields.io/github/tag/ickc/pantable.s
[![PyPI Wheel](https://img.shields.io/pypi/wheel/pantable.svg)](https://pypi.org/project/pantable)
[![Supported versions](https://img.shields.io/pypi/pyversions/pantable.svg)](https://pypi.org/project/pantable)
[![Supported implementations](https://img.shields.io/pypi/implementation/pantable.svg)](https://pypi.org/project/pantable)
[![Commits since latest release](https://img.shields.io/github/commits-since/ickc/pantable/v0.13.1.svg)](https://github.com/ickc/pantable/compare/v0.13.1...master)
[![Commits since latest release](https://img.shields.io/github/commits-since/ickc/pantable/v0.13.2.svg)](https://github.com/ickc/pantable/compare/v0.13.2...master)
[![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/)
| ![License](https://img.shields.io/pypi/l/pantable.svg)"
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -22,7 +22,7 @@
year = "2016-2020"
author = "Kolen Cheung"
copyright = f"{year}, {author}"
version = release = "0.13.1"
version = release = "0.13.2"

pygments_style = "solarizedlight"
html_theme = "bootstrap"
Expand Down
10 changes: 5 additions & 5 deletions makefile
Expand Up @@ -51,8 +51,8 @@ Clean: clean
# Deploy to PyPI
## by CI, properly git tagged
pypi:
git tag -a v0.13.1 -m 'Deploy to PyPI'
git push origin v0.13.1
git tag -a v0.13.2 -m 'Deploy to PyPI'
git push origin v0.13.2
## Manually
pypiManual:
rm -rf dist
Expand Down Expand Up @@ -108,8 +108,8 @@ 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.1.tar.gz pantable-0.13.1/setup.py
mv dist/pantable-0.13.1/setup.py .
rm -rf dist/pantable-0.13.1
cd dist; tar -xf pantable-0.13.2.tar.gz pantable-0.13.2/setup.py
mv dist/pantable-0.13.2/setup.py .
rm -rf dist/pantable-0.13.2
mv pyproject.toml .pyproject.toml
$(_python) -m pip install -e .$(EXTRAS); mv .pyproject.toml pyproject.toml
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "pantable"
version = "0.13.1"
version = "0.13.2"
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
Expand Up @@ -7,7 +7,7 @@
except ImportError:
from logging import Formatter

__version__ = '0.13.1'
__version__ = '0.13.2'
PY37 = sys.version_info.minor == 7

logger = logging.getLogger(__name__)
Expand Down

0 comments on commit 3a4b22b

Please sign in to comment.