Skip to content

Commit

Permalink
Bump version: 0.13.0 → 0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ickc committed Dec 19, 2020
1 parent 756ecd0 commit e81e10d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 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.0
current_version = 0.13.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion docs/badges.csv
Original file line number Diff line number Diff line change
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.0.svg)](https://github.com/ickc/pantable/compare/v0.13.0...master)
[![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)
[![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
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
year = "2016-2020"
author = "Kolen Cheung"
copyright = f"{year}, {author}"
version = release = "0.13.0"
version = release = "0.13.1"

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 @@ -51,8 +51,8 @@ Clean: clean
# Deploy to PyPI
## by CI, properly git tagged
pypi:
git tag -a v0.13.0 -m 'Deploy to PyPI'
git push origin v0.13.0
git tag -a v0.13.1 -m 'Deploy to PyPI'
git push origin v0.13.1
## Manually
pypiManual:
rm -rf dist
Expand Down Expand Up @@ -108,7 +108,7 @@ dist/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.0.tar.gz pantable-0.13.0/setup.py
mv dist/pantable-0.13.0/setup.py .
cd dist; tar -xf pantable-0.13.1.tar.gz pantable-0.13.1/setup.py
mv dist/pantable-0.13.1/setup.py .
mv pyproject.toml .pyproject.toml
$(_python) -m pip install -e .$(EXTRAS); mv .pyproject.toml pyproject.toml
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.0"
version = "0.13.1"
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.0'
__version__ = '0.13.1'
PY37 = sys.version_info.minor == 7

logger = logging.getLogger(__name__)
Expand Down

0 comments on commit e81e10d

Please sign in to comment.