Skip to content

Commit ae8bf3f

Browse files
committed
Release v0.2.1
1 parent 5b1b05c commit ae8bf3f

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
options: -v ${{ github.workspace }}:/io -e TERM=$TERM
3232
shell: bash
3333
run: |
34+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh /dev/stdin -y
35+
source "$HOME/.cargo/env"
3436
${{ env.pyo3-python }} -m pip install -U -r /io/ci/requirements.txt
3537
${{ env.pyo3-python }} -m pip wheel -vv /io -w /tmp
3638
for whl in /tmp/sphinxcontrib*.whl; do ${{ env.pyo3-python }} -m auditwheel repair $whl -w /io/dist; done

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77

88
## [Unreleased]
9-
[Unreleased]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.2.0...HEAD
9+
[Unreleased]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.2.1...HEAD
10+
11+
12+
## [v0.2.1] - 2022-11-10
13+
[v0.2.1]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.2.0...v0.2.1
14+
15+
### Fixed
16+
- Allow using Unicode box characters instead of ASCII ([#2](https://github.com/sphinx-contrib/svgbob/issues/2)).
17+
18+
### Added
19+
- Support for Python 3.11.
1020

1121

1222
## [v0.2.0] - 2022-09-30

sphinxcontrib/svgbob/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from .transform import SvgbobToImageTransform
77

88

9-
__version__ = "0.2.0"
9+
__version__ = "0.2.1"
1010

1111

1212
def setup(app: Sphinx) -> typing.Dict[str, typing.Any]:

sphinxcontrib/svgbob/_svgbob/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sphinxcontrib/svgbob/_svgbob/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sphinxcontrib-svgbob"
3-
version = "0.1.0"
3+
version = "0.2.1"
44
authors = ["Martin Larralde <martin.larralde@embl.de>"]
55
edition = "2018"
66
license = "MIT"

0 commit comments

Comments
 (0)