Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ jobs:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
manylinux: auto
# manylinux2014's rust-cross image ships GCC 4.8.5 (predates C11
# atomics by ~6 months), which breaks aws-lc-sys' aarch64 build.
# 2_28 ships GCC 7.5.0 with full C11 support.
manylinux: "2_28"
- name: Upload wheels
uses: actions/upload-artifact@v7
with:
Expand Down
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blastdns"
version = "1.9.0"
version = "1.9.1"
edition = "2024"
description = "Async DNS lookup library for bulk/parallel DNS resolution"
license = "GPL-3.0"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "blastdns"
version = "1.9.0"
version = "1.9.1"
description = "Async Python interface on top of the BlastDNS resolver"
license = "GPL-3.0"
repository = "https://github.com/blacklanternsecurity/blastdns"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading