Skip to content

Commit c399066

Browse files
committed
Release v0.3.0
1 parent 905ef7a commit c399066

File tree

6 files changed

+22
-21
lines changed

6 files changed

+22
-21
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ jobs:
1919
- cp310-manylinux_aarch64
2020
- cp311-manylinux_aarch64
2121
- cp312-manylinux_aarch64
22-
- pp37-manylinux_aarch64
23-
- pp38-manylinux_aarch64
24-
- pp39-manylinux_aarch64
25-
- pp310-manylinux_aarch64
2622
steps:
2723
- uses: actions/checkout@v3
2824
- name: Set up QEMU
@@ -58,10 +54,6 @@ jobs:
5854
- cp310-manylinux_x86_64
5955
- cp311-manylinux_x86_64
6056
- cp312-manylinux_x86_64
61-
- pp37-manylinux_x86_64
62-
- pp38-manylinux_x86_64
63-
- pp39-manylinux_x86_64
64-
- pp310-manylinux_x86_64
6557
steps:
6658
- uses: actions/checkout@v3
6759
- uses: actions-rs/toolchain@v1
@@ -96,10 +88,6 @@ jobs:
9688
- cp310-macosx_x86_64
9789
- cp311-macosx_x86_64
9890
- cp312-macosx_x86_64
99-
- pp37-macosx_x86_64
100-
- pp38-macosx_x86_64
101-
- pp39-macosx_x86_64
102-
- pp310-macosx_x86_64
10391
steps:
10492
- uses: actions/checkout@v3
10593
- uses: actions-rs/toolchain@v1
@@ -125,7 +113,7 @@ jobs:
125113

126114
wheel-macos-aarch64:
127115
name: Build MacOS wheels (Aarch64)
128-
runs-on: macOS-11
116+
runs-on: macOS-12
129117
strategy:
130118
matrix:
131119
python-tag:
@@ -170,10 +158,6 @@ jobs:
170158
- cp310-win_amd64
171159
- cp311-win_amd64
172160
- cp312-win_amd64
173-
- pp37-win_amd64
174-
- pp38-win_amd64
175-
- pp39-win_amd64
176-
- pp310-win_amd64
177161
steps:
178162
- uses: actions/checkout@v3
179163
- uses: actions-rs/toolchain@v1

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,20 @@ 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.1...HEAD
9+
[Unreleased]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.3.0...HEAD
10+
11+
12+
## [v0.3.0] - 2024-08-14
13+
[v0.3.0]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.2.1...v0.3.0
14+
15+
### Added
16+
- Support for Python 3.12 ([#4](https://github.com/sphinx-contrib/svgbob/issues/4), by [@maffoo](https://github.com/maffoo)).
17+
18+
### Changed
19+
- Bumped `svgbob` dependency to `v0.7.2`.
20+
21+
### Removed
22+
- `enhance_circuitries` and `merge_line_with_shapes` directives.
1023

1124

1225
## [v0.2.1] - 2022-11-10

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[build-system]
2+
requires = ['setuptools', 'setuptools_rust']
3+
build-backend = "setuptools.build_meta"
4+

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.1"
9+
__version__ = "0.3.0"
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.2.1"
3+
version = "0.3.0"
44
authors = ["Martin Larralde <martin.larralde@embl.de>"]
55
edition = "2018"
66
license = "MIT"

0 commit comments

Comments
 (0)