Skip to content

Commit

Permalink
Release 0.1.8 (#210)
Browse files Browse the repository at this point in the history
* bump version 0.1.8

* update other crates versions

* tag publish icp

* tag publish k3d

* tag publish k3d

* fix publish icp

* add k3d in release script
  • Loading branch information
edgarriba authored Jan 1, 2025
1 parent 25edcbd commit ba3f3a1
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/kornia/kornia-rs"
rust-version = "1.76"
version = "0.1.8-rc.1"
version = "0.1.8"

[workspace.dependencies]
# NOTE: remember to update the kornia-py package version in `kornia-py/Cargo.toml` when updating the Rust package version
kornia-tensor = { path = "crates/kornia-tensor", version = "0.1.8-rc.1" }
kornia-tensor-ops = { path = "crates/kornia-tensor-ops", version = "0.1.8-rc.1" }
kornia-icp = { path = "crates/kornia-icp", version = "0.1.8-rc.1" }
kornia-image = { path = "crates/kornia-image", version = "0.1.8-rc.1" }
kornia-io = { path = "crates/kornia-io", version = "0.1.8-rc.1" }
kornia-imgproc = { path = "crates/kornia-imgproc", version = "0.1.8-rc.1" }
kornia-3d = { path = "crates/kornia-3d", version = "0.1.8-rc.1" }
kornia = { path = "crates/kornia", version = "0.1.8-rc.1" }
kornia-tensor = { path = "crates/kornia-tensor", version = "0.1.8" }
kornia-tensor-ops = { path = "crates/kornia-tensor-ops", version = "0.1.8" }
kornia-icp = { path = "crates/kornia-icp", version = "0.1.8" }
kornia-image = { path = "crates/kornia-image", version = "0.1.8" }
kornia-io = { path = "crates/kornia-io", version = "0.1.8" }
kornia-imgproc = { path = "crates/kornia-imgproc", version = "0.1.8" }
kornia-3d = { path = "crates/kornia-3d", version = "0.1.8" }
kornia = { path = "crates/kornia", version = "0.1.8" }

# dev dependencies for workspace
argh = "0.1"
Expand Down
3 changes: 1 addition & 2 deletions crates/kornia-3d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ categories.workspace = true
description.workspace = true
edition.workspace = true
homepage.workspace = true
include.workspace = true
license.workspace = true
readme.workspace = true
publish = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/kornia-icp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ categories.workspace = true
description.workspace = true
edition.workspace = true
homepage.workspace = true
include.workspace = true
license.workspace = true
readme.workspace = true
publish = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true


[dependencies]
faer = { workspace = true }
kiddo = "5.0.2"
Expand Down
2 changes: 1 addition & 1 deletion kornia-py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include = ["Cargo.toml"]
license = "Apache-2.0"
repository = "https://github.com/kornia/kornia-rs"
rust-version = "1.76"
version = "0.1.8-rc.1"
version = "0.1.8"

[lib]
name = "kornia_rs"
Expand Down
3 changes: 2 additions & 1 deletion scripts/release_rust.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ if [[ "$1" == "--no-dry-run" ]]; then
fi

# Publish crates
cross publish -p kornia-tensor $DRY_RUN
cross publish -p kornia-tensor --all-features $DRY_RUN
cross publish -p kornia-tensor-ops $DRY_RUN
cross publish -p kornia-image $DRY_RUN
cross publish -p kornia-3d $DRY_RUsN
cross publish -p kornia-icp $DRY_RUN
cross publish -p kornia-io --all-features $DRY_RUN
cross publish -p kornia-imgproc $DRY_RUN
Expand Down

0 comments on commit ba3f3a1

Please sign in to comment.