Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ickc committed Nov 30, 2021
1 parent be731f8 commit a7a044d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 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.1.0
current_version = 0.1.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion docs/badges.csv
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
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 = "pannb"
version = "0.1.0"
version = "0.1.1"
description = "pannb—pandoc filter for ipynb"
license = "BSD-3-Clause"
keywords = [
Expand Down
2 changes: 1 addition & 1 deletion src/pannb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a7a044d

Please sign in to comment.