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
2 changes: 1 addition & 1 deletion .github/workflows/docker-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
type=raw,value=latest,enable={{is_default_branch}}
type=raw,value=v9
type=raw,value=v9.1
type=raw,value=v9.1.0
type=raw,value=v9.1.1

- name: Build and push Docker image
uses: docker/build-push-action@v6
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ jobs:
python-version: 3.x
- name: Build wheels
uses: PyO3/maturin-action@v1
env:
# Fix ARM cross-compilation: define __ARM_ARCH for assembly files
CFLAGS_aarch64_unknown_linux_gnu: "-march=armv8-a"
CFLAGS_armv7_unknown_linux_gnueabihf: "-march=armv7-a -mfpu=neon"
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
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 = "cloudcheck"
version = "9.1.0"
version = "9.1.1"
edition = "2024"
description = "CloudCheck is a simple Rust tool to check whether an IP address or hostname belongs to a cloud provider."
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 = "cloudcheck"
version = "9.1.0"
version = "9.1.1"
description = "Detailed database of cloud providers. Instantly look up a domain or IP address"
readme = "README.md"
requires-python = ">=3.9"
Expand Down