Skip to content

Commit ab2efcd

Browse files
committed
Release v0.3.2
1 parent 9bff6a9 commit ab2efcd

File tree

5 files changed

+18
-10
lines changed

5 files changed

+18
-10
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,12 @@ jobs:
114114
steps:
115115
- uses: actions/checkout@v4
116116
- uses: dtolnay/rust-toolchain@stable
117-
- name: Set up Python 3.12
117+
- name: Set up Python 3.14
118118
uses: actions/setup-python@v5
119119
with:
120-
python-version: 3.12
120+
python-version: 3.14
121121
- name: Install build requirements
122-
run: python -m pip install -r .github/workflows/requirements.txt
122+
run: python -m pip install -v -r .github/workflows/requirements.txt
123123
- name: Build source distribution
124124
run: python -m build -s .
125125
- name: Store built source distribution
@@ -135,17 +135,17 @@ jobs:
135135
- sdist
136136
steps:
137137
- uses: dtolnay/rust-toolchain@stable
138-
- name: Setup Python 3.12
138+
- name: Setup Python 3.14
139139
uses: actions/setup-python@v5
140140
with:
141-
python-version: 3.12
141+
python-version: 3.14
142142
- name: Download built wheels
143143
uses: actions/download-artifact@v4
144144
with:
145145
name: sdist
146146
path: dist/
147147
- name: Update pip to latest version
148-
run: python -m pip install -U pip
148+
run: python -m pip install -U pip maturin
149149
- name: Install built wheel
150150
run: python -m pip install --no-binary sphinxcontrib-svgbob --find-links=dist sphinxcontrib-svgbob
151151
- name: Run built-in tests

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,15 @@ 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.1...HEAD
9+
[Unreleased]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.3.2...HEAD
10+
11+
12+
## [v0.3.2] - 2026-02-19
13+
[v0.3.2]: https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.3.1...v0.3.2
14+
15+
### Changed
16+
- Bump `pyo3` dependency from `0.23.3` to `0.28.1`.
17+
- Setup build for Python 3.8 Limited API ([#7](https://github.com/sphinx-contrib/svgbob/issues/7)).
1018

1119

1220
## [v0.3.1] - 2025-01-09

COPYING

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021-2025 Martin Larralde <martin.larralde@embl.de>
3+
Copyright (c) 2021-2026 Martin Larralde <martin.larralde@embl.de>
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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "sphinxcontrib-svgbob"
77
dynamic = ["version"]
88
description = "A Sphinx extension to convert ASCII diagrams to SVGs with Svgbob."
99
readme = "README.md"
10-
requires-python = ">=3.7"
10+
requires-python = ">=3.8"
1111
license = { file = "COPYING" }
1212
authors = [
1313
{ name = "Martin Larralde", email = "martin.larralde@embl.de" },

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.3.1"
3+
version = "0.3.2"
44
authors = ["Martin Larralde <martin.larralde@embl.de>"]
55
edition = "2021"
66
license = "MIT"

0 commit comments

Comments
 (0)