Skip to content

Commit

Permalink
Release v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Nov 10, 2022
1 parent 5b1b05c commit ae8bf3f
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
options: -v ${{ github.workspace }}:/io -e TERM=$TERM
shell: bash
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh /dev/stdin -y
source "$HOME/.cargo/env"
${{ env.pyo3-python }} -m pip install -U -r /io/ci/requirements.txt
${{ env.pyo3-python }} -m pip wheel -vv /io -w /tmp
for whl in /tmp/sphinxcontrib*.whl; do ${{ env.pyo3-python }} -m auditwheel repair $whl -w /io/dist; done
Expand Down
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]
[Unreleased]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.2.1...HEAD


## [v0.2.1] - 2022-11-10
[v0.2.1]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.2.0...v0.2.1

### Fixed
- Allow using Unicode box characters instead of ASCII ([#2](https://github.com/sphinx-contrib/svgbob/issues/2)).

### Added
- Support for Python 3.11.


## [v0.2.0] - 2022-09-30
Expand Down
2 changes: 1 addition & 1 deletion sphinxcontrib/svgbob/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .transform import SvgbobToImageTransform


__version__ = "0.2.0"
__version__ = "0.2.1"


def setup(app: Sphinx) -> typing.Dict[str, typing.Any]:
Expand Down
2 changes: 1 addition & 1 deletion sphinxcontrib/svgbob/_svgbob/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sphinxcontrib/svgbob/_svgbob/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sphinxcontrib-svgbob"
version = "0.1.0"
version = "0.2.1"
authors = ["Martin Larralde <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down

0 comments on commit ae8bf3f

Please sign in to comment.