Skip to content

Commit e32d070

Browse files
committedJan 26, 2022
Bump version: 1.2.3 → 2.0.0
1 parent 76fa6a1 commit e32d070

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed
 

‎.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.2.3
2+
current_version = 2.0.0
33
commit = True
44
tag = True
55

‎README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ pandoc versioning semantics is `MAJOR.MAJOR.MINOR.PATCH <https://pvp.haskell.org
9696
:target: https://pypi.python.org/pypi/amsthm/
9797
.. |Downloads| image:: https://img.shields.io/pypi/dm/amsthm.svg
9898
:target: https://pypi.python.org/pypi/amsthm/
99-
.. |Commits since latest release| image:: https://img.shields.io/github/commits-since/ickc/pandoc-amsthm/v1.2.3.svg
100-
:target: https://github.com/ickc/pandoc-amsthm/compare/v1.2.3...master
99+
.. |Commits since latest release| image:: https://img.shields.io/github/commits-since/ickc/pandoc-amsthm/v2.0.0.svg
100+
:target: https://github.com/ickc/pandoc-amsthm/compare/v2.0.0...master
101101
.. |License| image:: https://img.shields.io/pypi/l/amsthm.svg
102102
.. |Conda Recipe| image:: https://img.shields.io/badge/recipe-amsthm-green.svg
103103
:target: https://anaconda.org/conda-forge/amsthm

‎docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ title: amsthm---provide a syntax to use amsthm environments in pandoc,
2020
[![GitHub Releases](https://img.shields.io/github/tag/ickc/pandoc-amsthm.svg?label=github+release)](https://github.com/ickc/pandoc-amsthm/releases)
2121
[![Development Status](https://img.shields.io/pypi/status/amsthm.svg)](https://pypi.python.org/pypi/amsthm/)
2222
[![Downloads](https://img.shields.io/pypi/dm/amsthm.svg)](https://pypi.python.org/pypi/amsthm/)
23-
[![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)
23+
[![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)
2424
![License](https://img.shields.io/pypi/l/amsthm.svg)
2525

2626
[![Conda Recipe](https://img.shields.io/badge/recipe-amsthm-green.svg)](https://anaconda.org/conda-forge/amsthm)

‎docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
year = "2016-2021"
2424
author = "Kolen Cheung"
2525
copyright = f"{year}, {author}"
26-
version = release = "1.2.3"
26+
version = release = "2.0.0"
2727

2828
pygments_style = "solarized-light"
2929
html_theme = "bootstrap"

‎makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ dist/docs/:
6363
# Deploy to PyPI
6464
## by CI, properly git tagged
6565
pypi:
66-
git push origin v1.2.3
66+
git push origin v2.0.0
6767
## Manually
6868
pypiManual:
6969
rm -rf dist
@@ -88,9 +88,9 @@ print-%:
8888

8989
setup.py:
9090
poetry build
91-
cd dist; tar -xf amsthm-1.2.3.tar.gz amsthm-1.2.3/setup.py
92-
mv dist/amsthm-1.2.3/setup.py .
93-
rm -rf dist/amsthm-1.2.3
91+
cd dist; tar -xf amsthm-2.0.0.tar.gz amsthm-2.0.0/setup.py
92+
mv dist/amsthm-2.0.0/setup.py .
93+
rm -rf dist/amsthm-2.0.0
9494

9595
.PHONY: editable
9696
# since poetry doesn't support editable, we can build and extract the setup.py,

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "amsthm"
7-
version = "1.2.3"
7+
version = "2.0.0"
88
description = "amsthm—provide a syntax to use amsthm environments in pandoc, with output in LaTeX and HTML"
99
license = "BSD-3-Clause"
1010
keywords = [

‎src/amsthm/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

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

22-
__version__: str = "1.2.3"
22+
__version__: str = "2.0.0"
2323

2424
PARENT_COUNTERS: set[str] = {
2525
"part",

0 commit comments

Comments
 (0)
Please sign in to comment.