From e81e10da9b239adcedbc710cb3b9dfa1d039564c Mon Sep 17 00:00:00 2001 From: Kolen Cheung Date: Fri, 18 Dec 2020 20:56:49 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.13.0=20=E2=86=92=200.13.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/badges.csv | 2 +- docs/conf.py | 2 +- makefile | 8 ++++---- pyproject.toml | 2 +- src/pantable/__init__.py | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6239783a..010f0326 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.13.0 +current_version = 0.13.1 commit = True tag = True diff --git a/docs/badges.csv b/docs/badges.csv index c02ad110..b35d1169 100644 --- a/docs/badges.csv +++ b/docs/badges.csv @@ -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)" \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index e1a7d29e..ae0f0e23 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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" diff --git a/makefile b/makefile index 70ddd297..67f62ad8 100644 --- a/makefile +++ b/makefile @@ -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 @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 012fb96d..8e2d01c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [ diff --git a/src/pantable/__init__.py b/src/pantable/__init__.py index deb5fab0..bfad63cb 100755 --- a/src/pantable/__init__.py +++ b/src/pantable/__init__.py @@ -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__)