Skip to content

Commit 489f3bf

Browse files
committed
chore: bump version
1 parent f0cd0ec commit 489f3bf

File tree

12 files changed

+29
-29
lines changed

12 files changed

+29
-29
lines changed

coaster-blas/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "coaster-blas"
33
description = "Coaster library for full BLAS support"
4-
version = "0.3.0"
4+
version = "0.4.0"
55
authors = [
66
"Bernhard Schuster <[email protected]>",
77
"Lissa Hyacinth <[email protected]>",
@@ -18,12 +18,12 @@ license = "MIT OR Apache-2.0"
1818
edition = "2018"
1919

2020
[dependencies]
21-
coaster = { version = "0.1", path = "../coaster", default-features = false }
21+
coaster = { version = "0.2.0", path = "../coaster", default-features = false }
2222
log = "0.4"
2323
# native
24-
rust-blas = { version = "^0.1", path = "../rust-blas", optional = true }
24+
rust-blas = { version = "0.2.0", path = "../rust-blas", optional = true }
2525
# cuda
26-
rcublas = { version = "0.5", path = "../rcublas/cublas", optional = true }
26+
rcublas = { version = "0.6.0", path = "../rcublas/cublas", optional = true }
2727

2828
[dev-dependencies]
2929

coaster-nn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "coaster-nn"
33
description = "coaster plugin providing Neural Network operations"
4-
version = "0.4.2"
4+
version = "0.5.0"
55
authors = [
66
"Bernhard Schuster <[email protected]>",
77
"Lissa Hyacinth <[email protected]>",

coaster/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "coaster"
33
description = "high-performance computation on any hardware"
4-
version = "0.1.1"
4+
version = "0.2.0"
55
authors = [
66
"Bernhard Schuster <[email protected]>",
77
"Lissa Hyacinth <[email protected]>",
@@ -25,7 +25,7 @@ num = "0.4"
2525
lazy_static = "1"
2626
thiserror = "1.0"
2727
rcudnn = { version = "1.7", path = "../rcudnn/cudnn", optional = true }
28-
rcublas = { version = "0.5", path = "../rcublas/cublas", optional = true }
28+
rcublas = { version = "0.6.0", path = "../rcublas/cublas", optional = true }
2929

3030
[dev-dependencies]
3131
# coaster-nn = { version = "0.4", default-features = false }

greenglas/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "greenglas"
33
description = "Data Preprocessing library for Machine Learning"
44
authors = ["Bernhard Schuster <[email protected]>",
55
"Michael Hirn"]
6-
version = "0.2.0"
6+
version = "0.3.0"
77
repository = "https://github.com/spearow/greenglas"
88
homepage = "https://spearow.io/projects/greenglas"
99
documentation = "https://spearow.github.com/greenglas"

juice-examples/mackey-glass-rnn-regression/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ edition = "2018"
77
publish = false
88

99
[dependencies]
10-
greenglas = { path = "../../greenglas" }
11-
juice = { path = "../../juice", default-features = false }
12-
coaster = { path = "../../coaster", default-features = false }
13-
coaster-nn = { path = "../../coaster-nn", default-features = false }
10+
greenglas = { path = "../../greenglas" , version = "0.3.0"}
11+
juice = { path = "../../juice", default-features = false , version = "0.3.0"}
12+
coaster = { path = "../../coaster", default-features = false , version = "0.2.0"}
13+
coaster-nn = { path = "../../coaster-nn", default-features = false , version = "0.5.0"}
1414

1515
csv = "1.1"
1616
serde = { version = "1", features = ["derive"] }

juice-examples/mnist-image-multiclass-classification/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ edition = "2018"
99
publish = false
1010

1111
[dependencies]
12-
greenglas = { path = "../../greenglas" }
13-
juice = { path = "../../juice", default-features = false }
14-
coaster = { path = "../../coaster", default-features = false }
15-
coaster-nn = { path = "../../coaster-nn", default-features = false }
12+
greenglas = { path = "../../greenglas" , version = "0.3.0"}
13+
juice = { path = "../../juice", default-features = false , version = "0.3.0"}
14+
coaster = { path = "../../coaster", default-features = false , version = "0.2.0"}
15+
coaster-nn = { path = "../../coaster-nn", default-features = false , version = "0.5.0"}
1616

1717
juice-utils = {path = "../juice-utils"}
1818

juice/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "juice"
33
description = "Machine Learning Framework for Hackers"
4-
version = "0.2.5"
4+
version = "0.3.0"
55
authors = [
66
"Bernhard Schuster <[email protected]>",
77
"Lissa Hyacinth <[email protected]>",
@@ -19,9 +19,9 @@ edition = "2018"
1919
build = "build.rs"
2020

2121
[dependencies]
22-
coaster = { default-features = false, version = "0.1", path = "../coaster" }
23-
coaster-blas = { default-features = false, version = "0.3", path = "../coaster-blas" }
24-
coaster-nn = { default-features = false, version = "0.4", path = "../coaster-nn" }
22+
coaster = { default-features = false, version = "0.2.0", path = "../coaster" }
23+
coaster-blas = { default-features = false, version = "0.4.0", path = "../coaster-blas" }
24+
coaster-nn = { default-features = false, version = "0.5.0", path = "../coaster-nn" }
2525

2626
log = "0.4"
2727
rand = "0.8"

rcublas/cublas-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rcublas-sys"
33
description = "FFI bindings to cuBLAS"
4-
version = "0.4.0"
4+
version = "0.5.0"
55
edition = "2018"
66
authors = [
77
"Bernhard Schuster <[email protected]>",

rcublas/cublas/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rcublas"
33
description = "safe Rust wrapper for CUDA's cuBLAS"
4-
version = "0.5.0"
4+
version = "0.6.0"
55
edition = "2018"
66
authors = [
77
"Bernhard Schuster <[email protected]>",
@@ -16,11 +16,11 @@ license = "MIT OR Apache-2.0"
1616

1717
[dependencies]
1818
libc = "0.2"
19-
rcublas-sys = { version = "0.4", path = "../cublas-sys" }
19+
rcublas-sys = { version = "0.5.0", path = "../cublas-sys" }
2020
lazy_static = "1"
2121
log = "0.4"
2222
thiserror = "1.0"
2323

2424
[dev-dependencies]
25-
coaster = { path = "../../coaster", default-features = false, features = ["cuda", "native"], version = "0.1" }
25+
coaster = { path = "../../coaster", default-features = false, features = ["cuda", "native"], version = "0.2.0"}
2626
env_logger = "0.9"

rcudnn/cudnn-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rcudnn-sys"
33
description = "FFI bindings to cuDNN"
4-
version = "0.4.0"
4+
version = "0.5.0"
55
edition = "2018"
66
authors = [
77
"Bernhard Schuster <[email protected]>",

0 commit comments

Comments
 (0)