Skip to content

Commit 4484a55

Browse files
committed
Bump all the crates' version to 0.8.1
1 parent 621a147 commit 4484a55

File tree

19 files changed

+44
-44
lines changed

19 files changed

+44
-44
lines changed

algorithms/linfa-bayes/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-bayes"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = ["VasanthakumarV <vasanth260m12@gmail.com>"]
55
description = "Collection of Naive Bayes Algorithms"
66
edition = "2018"
@@ -29,6 +29,6 @@ linfa = { version = "0.8.1", path = "../.." }
2929

3030
[dev-dependencies]
3131
approx = "0.5"
32-
linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [
32+
linfa-datasets = { version = "0.8.1", path = "../../datasets", features = [
3333
"winequality",
3434
] }

algorithms/linfa-clustering/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-clustering"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
edition = "2018"
55
authors = [
66
"Luca Palmieri <rust@lpalmieri.com>",
@@ -45,12 +45,12 @@ rand_xoshiro = "0.6"
4545
space = "0.19"
4646
thiserror = "2.0"
4747
linfa = { version = "0.8.1", path = "../.." }
48-
linfa-nn = { version = "0.8.0", path = "../linfa-nn" }
48+
linfa-nn = { version = "0.8.1", path = "../linfa-nn" }
4949
noisy_float = "0.2.0"
5050

5151
[dev-dependencies]
5252
ndarray-npy = { version = "0.9", default-features = false }
53-
linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [
53+
linfa-datasets = { version = "0.8.1", path = "../../datasets", features = [
5454
"generate",
5555
] }
5656
criterion = "0.5"

algorithms/linfa-elasticnet/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-elasticnet"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = [
55
"Paul Körbitz / Google <koerbitz@google.com>",
66
"Lorenz Schmidt <bytesnake@mailbox.org>",
@@ -40,7 +40,7 @@ thiserror = "2.0"
4040
linfa = { version = "0.8.1", path = "../.." }
4141

4242
[dev-dependencies]
43-
linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [
43+
linfa-datasets = { version = "0.8.1", path = "../../datasets", features = [
4444
"diabetes",
4545
"linnerud",
4646
] }

algorithms/linfa-ensemble/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-ensemble"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
edition = "2018"
55
authors = [
66
"James Knight <jamesknight@hadean.com>",
@@ -32,9 +32,9 @@ ndarray-rand = "0.15"
3232
rand = "0.8.5"
3333

3434
linfa = { version = "0.8.1", path = "../.." }
35-
linfa-trees = { version = "0.8.0", path = "../linfa-trees" }
35+
linfa-trees = { version = "0.8.1", path = "../linfa-trees" }
3636

3737
[dev-dependencies]
38-
linfa-datasets = { version = "0.8.0", path = "../../datasets/", features = [
38+
linfa-datasets = { version = "0.8.1", path = "../../datasets/", features = [
3939
"iris",
4040
] }

algorithms/linfa-ftrl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-ftrl"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = ["Liudmyla Kyrashchuk <himila@tutanota.com>"]
55

66
description = "A Machine Learning framework for Rust"
@@ -37,7 +37,7 @@ linfa = { version = "0.8.1", path = "../.." }
3737
[dev-dependencies]
3838
criterion = "0.5"
3939
approx = "0.5"
40-
linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [
40+
linfa-datasets = { version = "0.8.1", path = "../../datasets", features = [
4141
"winequality",
4242
] }
4343
linfa = { version = "0.8.1", path = "../..", features = ["benchmarks"] }

algorithms/linfa-hierarchical/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-hierarchical"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = ["Lorenz Schmidt <lorenz.schmidt@mailbox.org>"]
55
edition = "2018"
66

@@ -25,11 +25,11 @@ kodama = "0.2"
2525
thiserror = "2"
2626

2727
linfa = { version = "0.8.1", path = "../.." }
28-
linfa-kernel = { version = "0.8.0", path = "../linfa-kernel" }
28+
linfa-kernel = { version = "0.8.1", path = "../linfa-kernel" }
2929

3030
[dev-dependencies]
3131
rand = "0.8"
3232
ndarray-rand = "0.15"
33-
linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [
33+
linfa-datasets = { version = "0.8.1", path = "../../datasets", features = [
3434
"iris",
3535
] }

algorithms/linfa-ica/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-ica"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = ["VasanthakumarV <vasanth260m12@gmail.com>"]
55
description = "A collection of Independent Component Analysis (ICA) algorithms"
66
edition = "2018"

algorithms/linfa-kernel/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-kernel"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = ["Lorenz Schmidt <bytesnake@mailbox.org>"]
55
description = "Kernel methods for non-linear algorithms"
66
edition = "2018"
@@ -29,4 +29,4 @@ num-traits = "0.2"
2929
sprs = { version = "=0.11.2", default-features = false }
3030

3131
linfa = { version = "0.8.1", path = "../.." }
32-
linfa-nn = { version = "0.8.0", path = "../linfa-nn" }
32+
linfa-nn = { version = "0.8.1", path = "../linfa-nn" }

algorithms/linfa-lars/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-lars"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = ["Aswin <aswinak1111@gmail.com>"]
55
description = "Least Angle Regression methods"
66
edition = "2024"
@@ -27,14 +27,14 @@ features = ["std", "derive"]
2727
[dependencies]
2828
linfa = { version = "0.8.1", path = "../.." }
2929
linfa-linalg = { version = "0.2", default-features = false }
30-
linfa-preprocessing = { version = "0.8.0" , path = "../linfa-preprocessing"}
30+
linfa-preprocessing = { version = "0.8.1", path = "../linfa-preprocessing"}
3131
ndarray = { version = "0.16", features = ["approx"] }
3232
ndarray-linalg = { version = "0.17", optional = true }
3333
ndarray-stats = "0.6"
3434
thiserror = "2.0"
3535

3636
[dev-dependencies]
37-
linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [
37+
linfa-datasets = { version = "0.8.1", path = "../../datasets", features = [
3838
"diabetes",
3939
] }
4040
approx = "0.5"

algorithms/linfa-linear/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-linear"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = [
55
"Paul Körbitz / Google <koerbitz@google.com>",
66
"VasanthakumarV <vasanth260m12@gmail.com>",
@@ -40,7 +40,7 @@ thiserror = "2.0"
4040
linfa = { version = "0.8.1", path = "../.." }
4141

4242
[dev-dependencies]
43-
linfa-datasets = { version = "0.8.0", path = "../../datasets", features = [
43+
linfa-datasets = { version = "0.8.1", path = "../../datasets", features = [
4444
"diabetes",
4545
] }
4646
approx = "0.5"

0 commit comments

Comments
 (0)