Skip to content

Commit 626f913

Browse files
committed
Bump version v0.1.0 -> v0.1.1
1 parent be6ced4 commit 626f913

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.0
2+
current_version = 0.1.1
33
commit = True
44
tag = True
55

.github/workflows/conda_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ jobs:
5555
5656
- name: "Install package"
5757
run: |
58-
$CONDA/bin/conda install -c file://$(pwd)/conda-bld sphinx-jinja2-compat=0.1.0=py_1 -y || exit 1
58+
$CONDA/bin/conda install -c file://$(pwd)/conda-bld sphinx-jinja2-compat=0.1.1=py_1 -y || exit 1

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ sphinx-jinja2-compat
8787
.. |language| image:: https://img.shields.io/github/languages/top/sphinx-toolbox/sphinx-jinja2-compat
8888
:alt: GitHub top language
8989

90-
.. |commits-since| image:: https://img.shields.io/github/commits-since/sphinx-toolbox/sphinx-jinja2-compat/v0.1.0
90+
.. |commits-since| image:: https://img.shields.io/github/commits-since/sphinx-toolbox/sphinx-jinja2-compat/v0.1.1
9191
:target: https://github.com/sphinx-toolbox/sphinx-jinja2-compat/pulse
9292
:alt: GitHub commits since tagged version
9393

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "whey"
44

55
[project]
66
name = "sphinx-jinja2-compat"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
description = "Patches Jinja2 v3 to restore compatibility with earlier Sphinx versions."
99
readme = "README.rst"
1010
requires-python = ">=3.6"

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ email: "dominic@davis-foster.co.uk"
66
username: 'sphinx-toolbox'
77
assignee: 'domdfcoding'
88
primary_conda_channel: 'domdfcoding'
9-
version: "0.1.0"
9+
version: "0.1.1"
1010
license: "MIT"
1111
short_desc: "Patches Jinja2 v3 to restore compatibility with earlier Sphinx versions."
1212

sphinx_jinja2_compat/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
__author__: str = "Dominic Davis-Foster"
3636
__copyright__: str = "2022 Dominic Davis-Foster"
3737
__license__: str = "MIT License"
38-
__version__: str = "0.1.0"
38+
__version__: str = "0.1.1"
3939
__email__: str = "dominic@davis-foster.co.uk"
4040

4141
F = TypeVar('F', bound=Callable[..., Any])
@@ -68,6 +68,7 @@ def environmentfilter(f: F) -> F:
6868
def contextfunction(f: F) -> F:
6969
return jinja2.utils.pass_context(f)
7070

71+
7172
# This all has to be up here so it's triggered first.
7273
if sys.version_info >= (3, 10):
7374
# stdlib

0 commit comments

Comments
 (0)