Skip to content

Commit

Permalink
Bump version: 1.2.3 → 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ickc committed Jan 26, 2022
1 parent 76fa6a1 commit e32d070
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 = 1.2.3
current_version = 2.0.0
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 @@ -96,8 +96,8 @@ pandoc versioning semantics is `MAJOR.MAJOR.MINOR.PATCH <https://pvp.haskell.org
:target: https://pypi.python.org/pypi/amsthm/
.. |Downloads| image:: https://img.shields.io/pypi/dm/amsthm.svg
:target: https://pypi.python.org/pypi/amsthm/
.. |Commits since latest release| image:: https://img.shields.io/github/commits-since/ickc/pandoc-amsthm/v1.2.3.svg
:target: https://github.com/ickc/pandoc-amsthm/compare/v1.2.3...master
.. |Commits since latest release| image:: https://img.shields.io/github/commits-since/ickc/pandoc-amsthm/v2.0.0.svg
:target: https://github.com/ickc/pandoc-amsthm/compare/v2.0.0...master
.. |License| image:: https://img.shields.io/pypi/l/amsthm.svg
.. |Conda Recipe| image:: https://img.shields.io/badge/recipe-amsthm-green.svg
:target: https://anaconda.org/conda-forge/amsthm
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ title: amsthm---provide a syntax to use amsthm environments in pandoc,
[![GitHub Releases](https://img.shields.io/github/tag/ickc/pandoc-amsthm.svg?label=github+release)](https://github.com/ickc/pandoc-amsthm/releases)
[![Development Status](https://img.shields.io/pypi/status/amsthm.svg)](https://pypi.python.org/pypi/amsthm/)
[![Downloads](https://img.shields.io/pypi/dm/amsthm.svg)](https://pypi.python.org/pypi/amsthm/)
[![Commits since latest release](https://img.shields.io/github/commits-since/ickc/pandoc-amsthm/v1.2.3.svg)](https://github.com/ickc/pandoc-amsthm/compare/v1.2.3...master)
[![Commits since latest release](https://img.shields.io/github/commits-since/ickc/pandoc-amsthm/v2.0.0.svg)](https://github.com/ickc/pandoc-amsthm/compare/v2.0.0...master)
![License](https://img.shields.io/pypi/l/amsthm.svg)

[![Conda Recipe](https://img.shields.io/badge/recipe-amsthm-green.svg)](https://anaconda.org/conda-forge/amsthm)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
year = "2016-2021"
author = "Kolen Cheung"
copyright = f"{year}, {author}"
version = release = "1.2.3"
version = release = "2.0.0"

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 @@ -63,7 +63,7 @@ dist/docs/:
# Deploy to PyPI
## by CI, properly git tagged
pypi:
git push origin v1.2.3
git push origin v2.0.0
## Manually
pypiManual:
rm -rf dist
Expand All @@ -88,9 +88,9 @@ print-%:

setup.py:
poetry build
cd dist; tar -xf amsthm-1.2.3.tar.gz amsthm-1.2.3/setup.py
mv dist/amsthm-1.2.3/setup.py .
rm -rf dist/amsthm-1.2.3
cd dist; tar -xf amsthm-2.0.0.tar.gz amsthm-2.0.0/setup.py
mv dist/amsthm-2.0.0/setup.py .
rm -rf dist/amsthm-2.0.0

.PHONY: editable
# since poetry doesn't support editable, we can build and extract the setup.py,
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 = "amsthm"
version = "1.2.3"
version = "2.0.0"
description = "amsthm—provide a syntax to use amsthm environments in pandoc, with output in LaTeX and HTML"
license = "BSD-3-Clause"
keywords = [
Expand Down
2 changes: 1 addition & 1 deletion src/amsthm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

THM_DEF = list[Union[str, dict[str, str], dict[str, list[str]]]]

__version__: str = "1.2.3"
__version__: str = "2.0.0"

PARENT_COUNTERS: set[str] = {
"part",
Expand Down

0 comments on commit e32d070

Please sign in to comment.