Skip to content

Commit

Permalink
Chore: update cust_derive to 0.2 to fix incorrect version selection
Browse files Browse the repository at this point in the history
  • Loading branch information
RDambrosio016 committed Feb 12, 2022
1 parent 8ad95bc commit 99ace7a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions crates/cust/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Notable changes to this project will be documented in this file.

## 0.3.1 - 2/11/22

No changes, updated to cust_derive 0.2 to fix a bug.

## 0.3.0 - 2/7/22

### TLDR
Expand Down
4 changes: 2 additions & 2 deletions crates/cust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cust"
version = "0.3.0"
version = "0.3.1"
# Big thanks to the original author of rustacuda <3
authors = [
"Riccardo D'Ambrosio <[email protected]>",
Expand All @@ -16,7 +16,7 @@ readme = "../../README.md"
cust_core = { path = "../cust_core", version = "0.1.0"}
cust_raw = { path = "../cust_raw", version = "0.11.2"}
bitflags = "1.2"
cust_derive = { path = "../cust_derive", version = "0.1" }
cust_derive = { path = "../cust_derive", version = "0.2" }
glam = { version = "0.20", features=["cuda"], optional = true }
mint = { version = "^0.5", optional = true }
num-complex = { version = "0.4", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/cust_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cust_core"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Core library for cust that can be shared across CPU and GPU"
Expand All @@ -13,7 +13,7 @@ glam = { version = "0.20", features=["cuda", "libm"], default-features=false, op
mint = { version = "^0.5", optional = true }
half = { version = "1.8", optional = true }
num-complex = { version = "0.4", optional = true }
cust_derive = { path = "../cust_derive", version = "0.1" }
cust_derive = { path = "../cust_derive", version = "0.2" }

[features]
default = ["vek", "glam", "mint"]
2 changes: 1 addition & 1 deletion crates/cust_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cust_derive"
version = "0.1.1"
version = "0.2.0"
authors = ["Brook Heisler <[email protected]>", "Riccardo D'Ambrosio <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 99ace7a

Please sign in to comment.