Skip to content

Commit

Permalink
Bump version: 0.1.2 → 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ickc committed Jan 26, 2022
1 parent f7ab4af commit e82e367
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 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.2
current_version = 0.1.3
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ pandoc versioning semantics is `MAJOR.MAJOR.MINOR.PATCH <https://pvp.haskell.org
:target: https://pypi.python.org/pypi/pannb/
.. |Downloads| image:: https://img.shields.io/pypi/dm/pannb.svg
:target: https://pypi.python.org/pypi/pannb/
.. |Commits since latest release| image:: https://img.shields.io/github/commits-since/ickc/pannb/v0.1.2.svg
:target: https://github.com/ickc/pannb/compare/v0.1.2...master
.. |Commits since latest release| image:: https://img.shields.io/github/commits-since/ickc/pannb/v0.1.3.svg
:target: https://github.com/ickc/pannb/compare/v0.1.3...master
.. |License| image:: https://img.shields.io/pypi/l/pannb.svg
.. |Conda Recipe| image:: https://img.shields.io/badge/recipe-pannb-green.svg
:target: https://anaconda.org/conda-forge/pannb
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ title: pannb—pandoc filter for ipynb
[![GitHub Releases](https://img.shields.io/github/tag/ickc/pannb.svg?label=github+release)](https://github.com/ickc/pannb/releases)
[![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.2.svg)](https://github.com/ickc/pannb/compare/v0.1.2...master)
[![Commits since latest release](https://img.shields.io/github/commits-since/ickc/pannb/v0.1.3.svg)](https://github.com/ickc/pannb/compare/v0.1.3...master)
![License](https://img.shields.io/pypi/l/pannb.svg)

[![Conda Recipe](https://img.shields.io/badge/recipe-pannb-green.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.2"
version = release = "0.1.3"

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 @@ -79,7 +79,7 @@ dist/docs/:
# Deploy to PyPI
## by CI, properly git tagged
pypi:
git push origin v0.1.2
git push origin v0.1.3
## Manually
pypiManual:
rm -rf dist
Expand All @@ -104,9 +104,9 @@ print-%:

setup.py:
poetry build
cd dist; tar -xf pannb-0.1.2.tar.gz pannb-0.1.2/setup.py
mv dist/pannb-0.1.2/setup.py .
rm -rf dist/pannb-0.1.2
cd dist; tar -xf pannb-0.1.3.tar.gz pannb-0.1.3/setup.py
mv dist/pannb-0.1.3/setup.py .
rm -rf dist/pannb-0.1.3

# 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.2"
version = "0.1.3"
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 @@ -29,7 +29,7 @@
#: specify extra pandoc args used when calling convert_text
PANNBPANDOCARGS: list[str] = os.environ.get("PANNBPANDOCARGS", "").split()

__version__: str = "0.1.2"
__version__: str = "0.1.3"


def prepare_jupytext_metadata(
Expand Down

0 comments on commit e82e367

Please sign in to comment.