Skip to content

Commit 13aacb0

Browse files
authored
release: v0.4.1 (#105)
* release: v0.4.1 * fix: re-add python 3.10 * fix: add 3.10 to matrix * fix: 🤦
1 parent dd50999 commit 13aacb0

File tree

7 files changed

+285
-243
lines changed

7 files changed

+285
-243
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: ["3.11", "3.12", "3.13", "3.14"]
19+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2020
steps:
2121
- uses: actions/checkout@v5
2222
- uses: Swatinem/rust-cache@v2

.github/workflows/python.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ jobs:
2929
- uses: actions/checkout@v5
3030
- uses: actions/setup-python@v5
3131
with:
32-
python-version: 3.11
32+
python-version: 3.10
3333
- name: Build wheels
3434
uses: PyO3/maturin-action@v1
3535
env:
3636
# https://github.com/rust-lang/stacker/issues/79#issuecomment-1497479267
3737
CFLAGS_s390x_unknown_linux_gnu: -march=z10
3838
with:
3939
target: ${{ matrix.target }}
40-
args: --release --out dist -i 3.11 -F pyo3/abi3-py311
40+
args: --release --out dist -i 3.10
4141
sccache: "true"
4242
manylinux: auto
4343
- name: Upload wheels
@@ -59,12 +59,12 @@ jobs:
5959
- uses: actions/checkout@v5
6060
- uses: actions/setup-python@v5
6161
with:
62-
python-version: 3.11
62+
python-version: 3.10
6363
- name: Build wheels
6464
uses: PyO3/maturin-action@v1
6565
with:
6666
target: ${{ matrix.target }}
67-
args: --release --out dist -i 3.11 -F pyo3/abi3-py311
67+
args: --release --out dist -i 3.10
6868
sccache: "true"
6969
manylinux: musllinux_1_2
7070
- name: Upload wheels
@@ -84,13 +84,13 @@ jobs:
8484
- uses: actions/checkout@v5
8585
- uses: actions/setup-python@v5
8686
with:
87-
python-version: 3.11
87+
python-version: 3.10
8888
architecture: ${{ matrix.target }}
8989
- name: Build wheels
9090
uses: PyO3/maturin-action@v1
9191
with:
9292
target: ${{ matrix.target }}
93-
args: --release --out dist -i 3.11 -F pyo3/abi3-py311
93+
args: --release --out dist -i 3.10
9494
sccache: "true"
9595
- name: Upload wheels
9696
uses: actions/upload-artifact@v5
@@ -111,12 +111,12 @@ jobs:
111111
- uses: actions/checkout@v5
112112
- uses: actions/setup-python@v5
113113
with:
114-
python-version: 3.11
114+
python-version: 3.10
115115
- name: Build wheels
116116
uses: PyO3/maturin-action@v1
117117
with:
118118
target: ${{ matrix.platform.target }}
119-
args: --release --out dist -i 3.11 -F pyo3/abi3-py311
119+
args: --release --out dist -i 3.10
120120
sccache: "true"
121121
- name: Upload wheels
122122
uses: actions/upload-artifact@v5

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [0.4.1] - 2025-10-31
10+
11+
## Changed
12+
13+
- Deploy abi3 wheels ([#94](https://github.com/developmentseed/cql2-rs/pull/94))
14+
15+
## Removed
16+
17+
- Python 3.9 ([#94](https://github.com/developmentseed/cql2-rs/pull/94))
18+
919
## [0.4.0] - 2025-09-16
1020

1121
### Changed
@@ -103,7 +113,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
103113

104114
Initial release.
105115

106-
[Unreleased]: https://github.com/developmentseed/cql2-rs/compare/v0.4.0...main
116+
[Unreleased]: https://github.com/developmentseed/cql2-rs/compare/v0.4.1...main
117+
[0.4.1]: https://github.com/developmentseed/cql2-rs/compare/v0.4.0...v0.4.1
107118
[0.4.0]: https://github.com/developmentseed/cql2-rs/compare/v0.3.8...v0.4.0
108119
[0.3.8]: https://github.com/developmentseed/cql2-rs/compare/v0.3.7...v0.3.8
109120
[0.3.7]: https://github.com/developmentseed/cql2-rs/compare/v0.3.6...v0.3.7

0 commit comments

Comments
 (0)