Skip to content

Commit 99ace7a

Browse files
committed
Chore: update cust_derive to 0.2 to fix incorrect version selection
1 parent 8ad95bc commit 99ace7a

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

crates/cust/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
## 0.3.1 - 2/11/22
6+
7+
No changes, updated to cust_derive 0.2 to fix a bug.
8+
59
## 0.3.0 - 2/7/22
610

711
### TLDR

crates/cust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cust"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
# Big thanks to the original author of rustacuda <3
55
authors = [
66
"Riccardo D'Ambrosio <[email protected]>",
@@ -16,7 +16,7 @@ readme = "../../README.md"
1616
cust_core = { path = "../cust_core", version = "0.1.0"}
1717
cust_raw = { path = "../cust_raw", version = "0.11.2"}
1818
bitflags = "1.2"
19-
cust_derive = { path = "../cust_derive", version = "0.1" }
19+
cust_derive = { path = "../cust_derive", version = "0.2" }
2020
glam = { version = "0.20", features=["cuda"], optional = true }
2121
mint = { version = "^0.5", optional = true }
2222
num-complex = { version = "0.4", optional = true }

crates/cust_core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cust_core"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Core library for cust that can be shared across CPU and GPU"
@@ -13,7 +13,7 @@ glam = { version = "0.20", features=["cuda", "libm"], default-features=false, op
1313
mint = { version = "^0.5", optional = true }
1414
half = { version = "1.8", optional = true }
1515
num-complex = { version = "0.4", optional = true }
16-
cust_derive = { path = "../cust_derive", version = "0.1" }
16+
cust_derive = { path = "../cust_derive", version = "0.2" }
1717

1818
[features]
1919
default = ["vek", "glam", "mint"]

crates/cust_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cust_derive"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
authors = ["Brook Heisler <[email protected]>", "Riccardo D'Ambrosio <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)