File tree Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.14.1
2
+ current_version = 0.14.2
3
3
commit = True
4
4
tag = True
5
5
Original file line number Diff line number Diff line change @@ -538,8 +538,8 @@ The followings are pandoc filters written in Haskell that provide similar functi
538
538
:target: https://pypi.python.org/pypi/pantable/
539
539
.. |Downloads | image :: https://img.shields.io/pypi/dm/pantable.svg
540
540
: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
543
543
.. |License | image :: https://img.shields.io/pypi/l/pantable.svg
544
544
.. |Conda Recipe | image :: https://img.shields.io/badge/recipe-pantable-green.svg
545
545
:target: https://anaconda.org/conda-forge/pantable
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ package,"
21
21
[](https://pypi.python.org/pypi/pantable/)
22
22
[](https://pypi.python.org/pypi/pantable/)
23
23
24
- [](https://github.com/ickc/pantable/compare/v0.14.1 ...master)
24
+ [](https://github.com/ickc/pantable/compare/v0.14.2 ...master)
25
25

26
26
"
27
27
conda-forge,"
Original file line number Diff line number Diff line change 23
23
year = "2016-2020"
24
24
author = "Kolen Cheung"
25
25
copyright = f"{ year } , { author } "
26
- version = release = "0.14.1 "
26
+ version = release = "0.14.2 "
27
27
28
28
pygments_style = "solarized-light"
29
29
html_theme = "bootstrap"
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ Clean: clean
52
52
# Deploy to PyPI
53
53
# # by CI, properly git tagged
54
54
pypi :
55
- git push origin v0.14.1
55
+ git push origin v0.14.2
56
56
# # Manually
57
57
pypiManual :
58
58
rm -rf dist
@@ -106,9 +106,9 @@ dist/epub/pantable.epub: docs
106
106
107
107
setup.py :
108
108
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
112
112
113
113
# since poetry doesn't support editable, we can build and extract the setup.py,
114
114
# temporary remove pyproject.toml and ask pip to install from setup.py instead.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
5
5
[tool .poetry ]
6
6
name = " pantable"
7
- version = " 0.14.1 "
7
+ version = " 0.14.2 "
8
8
description = " A Python library for writing pandoc filters for tables with batteries included."
9
9
license = " BSD-3-Clause"
10
10
keywords = [
Original file line number Diff line number Diff line change 7
7
except ImportError :
8
8
from logging import Formatter
9
9
10
- __version__ = '0.14.1 '
10
+ __version__ = '0.14.2 '
11
11
PY37 = sys .version_info .minor == 7
12
12
13
13
logger = logging .getLogger (__name__ )
You can’t perform that action at this time.
0 commit comments