Skip to content

Commit

Permalink
Bumped version to 0.2.1 and added check-rust make command
Browse files Browse the repository at this point in the history
  • Loading branch information
mailletf committed Aug 5, 2024
1 parent aa452b6 commit a0bff4c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
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 = "rusty-polygon-geohasher"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
authors = ["Francois Maillet <[email protected]>"]
homepage = "https://github.com/nexmoov/rusty-polygon-geohasher"
Expand Down
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,11 @@ format: ## Format the code
$(info --- Python format ---)
poetry run ruff check . --fix
poetry run ruff format .


.PHONY: check-rust
check-rust: ## Run check on Rust
$(info --- Check Rust clippy ---)
cargo clippy
$(info --- Check Rust format ---)
cargo fmt -- --check
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rusty-polygon-geohasher"
version = "0.2.0"
version = "0.2.1"
description = "A Rust implementation of the polygon to geohash library"
readme = "README.md"
authors = ["Francois Maillet <[email protected]>"]
Expand Down

0 comments on commit a0bff4c

Please sign in to comment.