Skip to content

Commit

Permalink
Release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Aug 14, 2024
1 parent 905ef7a commit 7b096d2
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 20 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ jobs:
- cp310-manylinux_aarch64
- cp311-manylinux_aarch64
- cp312-manylinux_aarch64
- pp37-manylinux_aarch64
- pp38-manylinux_aarch64
- pp39-manylinux_aarch64
- pp310-manylinux_aarch64
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
Expand Down Expand Up @@ -58,10 +54,6 @@ jobs:
- cp310-manylinux_x86_64
- cp311-manylinux_x86_64
- cp312-manylinux_x86_64
- pp37-manylinux_x86_64
- pp38-manylinux_x86_64
- pp39-manylinux_x86_64
- pp310-manylinux_x86_64
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -96,10 +88,6 @@ jobs:
- cp310-macosx_x86_64
- cp311-macosx_x86_64
- cp312-macosx_x86_64
- pp37-macosx_x86_64
- pp38-macosx_x86_64
- pp39-macosx_x86_64
- pp310-macosx_x86_64
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -170,10 +158,6 @@ jobs:
- cp310-win_amd64
- cp311-win_amd64
- cp312-win_amd64
- pp37-win_amd64
- pp38-win_amd64
- pp39-win_amd64
- pp310-win_amd64
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand Down
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,20 @@ 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.1...HEAD
[Unreleased]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.3.0...HEAD


## [v0.3.0] - 2024-08-14
[v0.3.0]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.2.1...v0.3.0

### Added
- Support for Python 3.12 ([#4](https://github.com/sphinx-contrib/svgbob/issues/4), by [@maffoo](https://github.com/maffoo)).

### Changed
- Bumped `svgbob` dependency to `v0.7.2`.

### Removed
- `enhance_circuitries` and `merge_line_with_shapes` directives.


## [v0.2.1] - 2022-11-10
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[build-system]
requires = ['setuptools', 'setuptools_rust']
build-backend = "setuptools.build_meta"

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.1"
__version__ = "0.3.0"


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.2.1"
version = "0.3.0"
authors = ["Martin Larralde <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down

0 comments on commit 7b096d2

Please sign in to comment.