Skip to content

Commit

Permalink
Bump version: 0.13.6 → 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ickc committed Jul 3, 2021
1 parent c58fd3d commit 72c15c2
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.6
current_version = 0.14.0
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 @@ -536,8 +536,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.6.svg
:target: https://github.com/ickc/pantable/compare/v0.13.6...master
.. |Commits since latest release| image:: https://img.shields.io/github/commits-since/ickc/pantable/v0.14.0.svg
:target: https://github.com/ickc/pantable/compare/v0.14.0...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.6.svg)](https://github.com/ickc/pantable/compare/v0.13.6...master)
[![Commits since latest release](https://img.shields.io/github/commits-since/ickc/pantable/v0.14.0.svg)](https://github.com/ickc/pantable/compare/v0.14.0...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.6"
version = release = "0.14.0"

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 @@ -52,7 +52,7 @@ Clean: clean
# Deploy to PyPI
## by CI, properly git tagged
pypi:
git push origin v0.13.6
git push origin v0.14.0
## Manually
pypiManual:
rm -rf dist
Expand Down Expand Up @@ -106,9 +106,9 @@ dist/epub/pantable.epub: docs

setup.py:
poetry build
cd dist; tar -xf pantable-0.13.6.tar.gz pantable-0.13.6/setup.py
mv dist/pantable-0.13.6/setup.py .
rm -rf dist/pantable-0.13.6
cd dist; tar -xf pantable-0.14.0.tar.gz pantable-0.14.0/setup.py
mv dist/pantable-0.14.0/setup.py .
rm -rf dist/pantable-0.14.0

# since poetry doesn't support editable, we can build and extract the setup.py,
# temporary remove pyproject.toml and ask pip to install from setup.py instead.
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.6"
version = "0.14.0"
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.6'
__version__ = '0.14.0'
PY37 = sys.version_info.minor == 7

logger = logging.getLogger(__name__)
Expand Down

0 comments on commit 72c15c2

Please sign in to comment.