Skip to content
Merged

fix #18

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
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ jobs:
elif command -v apt-get &> /dev/null; then
apt-get update && apt-get install -y perl
fi
# Fix ring crate aarch64 cross-compilation:
# the cross-compiler doesn't define __ARM_ARCH for .S assembly files
export CFLAGS_aarch64_unknown_linux_gnu="-D__ARM_ARCH=8"

- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "googer"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
description = "A powerful, type-safe Google Search library for Python — powered by Rust."
license = "Apache-2.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 = "googer"
version = "0.3.0"
version = "0.3.1"
description = "A powerful, type-safe Google Search library for Python — powered by Rust."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
Loading