Skip to content

Commit 2e1d517

Browse files
committed
Bump version: 0.14.1 → 0.14.2
1 parent 0bf9b6d commit 2e1d517

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.14.1
2+
current_version = 0.14.2
33
commit = True
44
tag = True
55

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -538,8 +538,8 @@ The followings are pandoc filters written in Haskell that provide similar functi
538538
:target: https://pypi.python.org/pypi/pantable/
539539
.. |Downloads| image:: https://img.shields.io/pypi/dm/pantable.svg
540540
:target: https://pypi.python.org/pypi/pantable/
541-
.. |Commits since latest release| image:: https://img.shields.io/github/commits-since/ickc/pantable/v0.14.1.svg
542-
:target: https://github.com/ickc/pantable/compare/v0.14.1...master
541+
.. |Commits since latest release| image:: https://img.shields.io/github/commits-since/ickc/pantable/v0.14.2.svg
542+
:target: https://github.com/ickc/pantable/compare/v0.14.2...master
543543
.. |License| image:: https://img.shields.io/pypi/l/pantable.svg
544544
.. |Conda Recipe| image:: https://img.shields.io/badge/recipe-pantable-green.svg
545545
:target: https://anaconda.org/conda-forge/pantable

docs/badges.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ package,"
2121
[![Development Status](https://img.shields.io/pypi/status/pantable.svg)](https://pypi.python.org/pypi/pantable/)
2222
[![Downloads](https://img.shields.io/pypi/dm/pantable.svg)](https://pypi.python.org/pypi/pantable/)
2323

24-
[![Commits since latest release](https://img.shields.io/github/commits-since/ickc/pantable/v0.14.1.svg)](https://github.com/ickc/pantable/compare/v0.14.1...master)
24+
[![Commits since latest release](https://img.shields.io/github/commits-since/ickc/pantable/v0.14.2.svg)](https://github.com/ickc/pantable/compare/v0.14.2...master)
2525
![License](https://img.shields.io/pypi/l/pantable.svg)
2626
"
2727
conda-forge,"

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
year = "2016-2020"
2424
author = "Kolen Cheung"
2525
copyright = f"{year}, {author}"
26-
version = release = "0.14.1"
26+
version = release = "0.14.2"
2727

2828
pygments_style = "solarized-light"
2929
html_theme = "bootstrap"

makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Clean: clean
5252
# Deploy to PyPI
5353
## by CI, properly git tagged
5454
pypi:
55-
git push origin v0.14.1
55+
git push origin v0.14.2
5656
## Manually
5757
pypiManual:
5858
rm -rf dist
@@ -106,9 +106,9 @@ dist/epub/pantable.epub: docs
106106

107107
setup.py:
108108
poetry build
109-
cd dist; tar -xf pantable-0.14.1.tar.gz pantable-0.14.1/setup.py
110-
mv dist/pantable-0.14.1/setup.py .
111-
rm -rf dist/pantable-0.14.1
109+
cd dist; tar -xf pantable-0.14.2.tar.gz pantable-0.14.2/setup.py
110+
mv dist/pantable-0.14.2/setup.py .
111+
rm -rf dist/pantable-0.14.2
112112

113113
# since poetry doesn't support editable, we can build and extract the setup.py,
114114
# temporary remove pyproject.toml and ask pip to install from setup.py instead.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "pantable"
7-
version = "0.14.1"
7+
version = "0.14.2"
88
description = "A Python library for writing pandoc filters for tables with batteries included."
99
license = "BSD-3-Clause"
1010
keywords = [

src/pantable/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
except ImportError:
88
from logging import Formatter
99

10-
__version__ = '0.14.1'
10+
__version__ = '0.14.2'
1111
PY37 = sys.version_info.minor == 7
1212

1313
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)