Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Sep 30, 2022
1 parent 92490d8 commit ee7b0fb
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: |
${{ 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/*.whl; do ${{ env.pyo3-python }} -m auditwheel repair $whl -w /io/dist; done
for whl in /tmp/sphinxcontrib*.whl; do ${{ env.pyo3-python }} -m auditwheel repair $whl -w /io/dist; done
- name: Store built wheels
uses: actions/upload-artifact@v2
with:
Expand Down
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


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


## [v0.2.0] - 2022-09-30
[v0.2.0]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.1.1...v0.2.0

### Changed
- Bumped `pyo3` dependency to `v0.17.1`.
- Bumped `svgbob` dependency to `v0.6.7`.
- Use GitHub Actions instead of AppVeyor to build and test wheels for Windows.

### Added
- Support for Python 3.10 ([#1](https://github.com/sphinx-contrib/svgbob/issues/1)).

### Removed
- Support for Python 3.6.


## [v0.1.1] - 2021-04-14
[v0.1.1]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.1.0...v0.1.1
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@


[![Actions](https://img.shields.io/github/workflow/status/sphinx-contrib/svgbob/Test?style=flat-square&maxAge=600)](https://github.com/sphinx-contrib/svgbob/actions)
[![AppVeyor](https://img.shields.io/appveyor/ci/sphinx-contrib/svgbob/main?logo=appveyor&style=flat-square&maxAge=600)](https://ci.appveyor.com/project/sphinx-contrib/svgbob)
[![Codecov](https://img.shields.io/codecov/c/gh/sphinx-contrib/svgbob/master.svg?style=flat-square&maxAge=600)](https://codecov.io/gh/sphinx-contrib/svgbob)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&maxAge=2678400)](https://choosealicense.com/licenses/mit/)
[![Source](https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=2678400&style=flat-square)](https://github.com/sphinx-contrib/svgbob/)
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.1.1"
__version__ = "0.2.0"


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

0 comments on commit ee7b0fb

Please sign in to comment.