Skip to content

Commit d7a3a26

Browse files
committed
Release v0.3.1
1 parent 7d9ea17 commit d7a3a26

File tree

6 files changed

+17
-10
lines changed

6 files changed

+17
-10
lines changed

.github/workflows/publish.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
platforms: all
2929
- name: Build manylinux wheels
30-
uses: pypa/cibuildwheel@v2.19.1
30+
uses: pypa/cibuildwheel@v2.22.0
3131
env:
3232
CIBW_ARCHS: aarch64
3333
CIBW_BUILD: ${{ matrix.python-tag }}
@@ -59,7 +59,7 @@ jobs:
5959
- name: Setup Rust
6060
uses: dtolnay/rust-toolchain@stable
6161
- name: Build manylinux wheels
62-
uses: pypa/cibuildwheel@v2.19.1
62+
uses: pypa/cibuildwheel@v2.22.0
6363
env:
6464
CIBW_ARCHS: x86_64
6565
CIBW_BUILD: ${{ matrix.python-tag }}
@@ -90,8 +90,10 @@ jobs:
9090
- uses: actions/checkout@v4
9191
- name: Setup Rust
9292
uses: dtolnay/rust-toolchain@stable
93+
with:
94+
targets: x86_64-apple-darwin
9395
- name: Build manylinux wheels
94-
uses: pypa/cibuildwheel@v2.19.1
96+
uses: pypa/cibuildwheel@v2.22.0
9597
env:
9698
CIBW_ARCHS: x86_64
9799
CIBW_BUILD: ${{ matrix.python-tag }}
@@ -124,7 +126,7 @@ jobs:
124126
with:
125127
targets: aarch64-apple-darwin
126128
- name: Build manylinux wheels
127-
uses: pypa/cibuildwheel@v2.19.1
129+
uses: pypa/cibuildwheel@v2.22.0
128130
env:
129131
CIBW_ARCHS: arm64
130132
CIBW_BUILD: ${{ matrix.python-tag }}
@@ -157,7 +159,7 @@ jobs:
157159
- name: Setup Rust
158160
uses: dtolnay/rust-toolchain@stable
159161
- name: Build manylinux wheels
160-
uses: pypa/cibuildwheel@v2.19.1
162+
uses: pypa/cibuildwheel@v2.22.0
161163
env:
162164
CIBW_ARCHS: AMD64
163165
CIBW_BUILD: ${{ matrix.python-tag }}

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,17 @@ 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.3.0...HEAD
9+
[Unreleased]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.3.1...HEAD
10+
11+
12+
## [v0.3.1] - 2025-01-09
13+
[v0.3.1]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.3.0...v0.3.1
1014

1115
### Changed
1216
- Bumped `built` dependency from `0.5.1` to `0.7.5`.
1317
- Bumped `pyo3` dependency from `0.17.1` to `0.23.3`.
1418

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

COPYING

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Martin Larralde <[email protected]>
3+
Copyright (c) 2021-2025 Martin Larralde <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

sphinxcontrib/svgbob/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from .transform import SvgbobToImageTransform
77

88

9-
__version__ = "0.3.0"
9+
__version__ = "0.3.1"
1010

1111

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

sphinxcontrib/svgbob/_svgbob/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sphinxcontrib/svgbob/_svgbob/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sphinxcontrib-svgbob"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Martin Larralde <[email protected]>"]
55
edition = "2021"
66
license = "MIT"

0 commit comments

Comments
 (0)