From ee7b0fb7f6638879627216bab9e4bc8366d2908a Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Fri, 30 Sep 2022 14:11:08 +0200 Subject: [PATCH] Release v0.2.0 --- .github/workflows/publish.yml | 2 +- CHANGELOG.md | 18 +++++++++++++++++- README.md | 1 - sphinxcontrib/svgbob/__init__.py | 2 +- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7c967b7..9b48e17 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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: diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bcef9d..5e114eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 5077e02..b98bf04 100644 --- a/README.md +++ b/README.md @@ -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/) diff --git a/sphinxcontrib/svgbob/__init__.py b/sphinxcontrib/svgbob/__init__.py index a7c260d..13d167a 100644 --- a/sphinxcontrib/svgbob/__init__.py +++ b/sphinxcontrib/svgbob/__init__.py @@ -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]: