From a7a044d69478dc2bc4a99604aba51d7e6b586715 Mon Sep 17 00:00:00 2001 From: Kolen Cheung Date: Tue, 30 Nov 2021 12:59:25 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.0=20=E2=86=92=200.1.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/pannb/__init__.py | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 519c241..4d056a4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 commit = True tag = True diff --git a/docs/badges.csv b/docs/badges.csv index 92284a4..9291bff 100644 --- a/docs/badges.csv +++ b/docs/badges.csv @@ -16,7 +16,7 @@ package,"[![Supported versions](https://img.shields.io/pypi/pyversions/pannb.svg [![Development Status](https://img.shields.io/pypi/status/pannb.svg)](https://pypi.python.org/pypi/pannb/) [![Downloads](https://img.shields.io/pypi/dm/pannb.svg)](https://pypi.python.org/pypi/pannb/) -[![Commits since latest release](https://img.shields.io/github/commits-since/ickc/pannb/v0.1.0.svg)](https://github.com/ickc/pannb/compare/v0.1.0...master) +[![Commits since latest release](https://img.shields.io/github/commits-since/ickc/pannb/v0.1.1.svg)](https://github.com/ickc/pannb/compare/v0.1.1...master) ![License](https://img.shields.io/pypi/l/pannb.svg)" conda-forge,"[![Conda Recipe](https://img.shields.io/badge/recipe-pannb-green.svg)](https://anaconda.org/conda-forge/pannb) [![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/pannb.svg)](https://anaconda.org/conda-forge/pannb) diff --git a/docs/conf.py b/docs/conf.py index 29fe9b2..481bdde 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,7 +24,7 @@ year = "2021" author = "Kolen Cheung" copyright = f"{year}, {author}" -version = release = "0.1.0" +version = release = "0.1.1" pygments_style = "solarized-light" html_theme = "bootstrap" diff --git a/makefile b/makefile index ce8fcc7..e0f2fec 100644 --- a/makefile +++ b/makefile @@ -76,7 +76,7 @@ dist/docs/: # Deploy to PyPI ## by CI, properly git tagged pypi: - git push origin v0.1.0 + git push origin v0.1.1 ## Manually pypiManual: rm -rf dist @@ -101,9 +101,9 @@ print-%: setup.py: poetry build - cd dist; tar -xf pannb-0.1.0.tar.gz pannb-0.1.0/setup.py - mv dist/pannb-0.1.0/setup.py . - rm -rf dist/pannb-0.1.0 + cd dist; tar -xf pannb-0.1.1.tar.gz pannb-0.1.1/setup.py + mv dist/pannb-0.1.1/setup.py . + rm -rf dist/pannb-0.1.1 # 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. diff --git a/pyproject.toml b/pyproject.toml index e7a93fb..1aa269d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pannb" -version = "0.1.0" +version = "0.1.1" description = "pannb—pandoc filter for ipynb" license = "BSD-3-Clause" keywords = [ diff --git a/src/pannb/__init__.py b/src/pannb/__init__.py index 4c7acb4..e37873c 100644 --- a/src/pannb/__init__.py +++ b/src/pannb/__init__.py @@ -28,7 +28,7 @@ #: specify extra pandoc args used when calling convert_text PANNBPANDOCARGS: list[str] = os.environ.get("PANNBPANDOCARGS", "").split() -__version__: str = "0.1.0" +__version__: str = "0.1.1" def convert_jupytext_metadata(raw_block: RawBlock, doc: Doc) -> list | None: