Skip to content

Commit 4e4f688

Browse files
committed
update v0.3.9
1 parent 738ff0c commit 4e4f688

2 files changed

Lines changed: 14 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v0.3.9 -- 2025-07-07
4+
5+
Enhancements:
6+
- Feature with optional dependencies. Now in main crate `rstsr`, using feature `faer` and `openblas` along with `linalg` and `sci` should be ok, without explicitly declaring `rstsr-linalg-traits` and `rstsr-sci-traits` as dependencies.
7+
38
## v0.3.8 -- 2025-07-04
49

510
Bug Fix:

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ members = [
1313
]
1414

1515
[workspace.package]
16-
version = "0.3.8"
16+
version = "0.3.9"
1717
edition = "2021"
1818
description = "An n-Dimension Rust Tensor Toolkit"
1919
repository = "https://github.com/RESTGroup/rstsr"
@@ -22,16 +22,16 @@ categories = ["science"]
2222
license = "Apache-2.0"
2323

2424
[workspace.dependencies]
25-
rstsr-core = { path = "./rstsr-core", default-features = false, version = "0.3.8" }
25+
rstsr-core = { path = "./rstsr-core", default-features = false, version = "0.3.9" }
2626
# members without core
27-
rstsr-common = { path = "./rstsr-common", default-features = false, version = "0.3.8" }
28-
rstsr-dtype-traits = { path = "./rstsr-dtype-traits", default-features = false, version = "0.3.8" }
29-
rstsr-native-impl = { path = "./rstsr-native-impl", default-features = false, version = "0.3.8" }
27+
rstsr-common = { path = "./rstsr-common", default-features = false, version = "0.3" }
28+
rstsr-dtype-traits = { path = "./rstsr-dtype-traits", default-features = false, version = "0.3.9" }
29+
rstsr-native-impl = { path = "./rstsr-native-impl", default-features = false, version = "0.3.9" }
3030
# members
31-
rstsr-openblas = { path = "./rstsr-openblas", default-features = false, version = "0.3.8" }
32-
rstsr-blas-traits = { path = "./rstsr-blas-traits", default-features = false, version = "0.3.8" }
33-
rstsr-linalg-traits = { path = "./rstsr-linalg-traits", default-features = false, version = "0.3.8" }
34-
rstsr-sci-traits = { path = "./rstsr-sci-traits", default-features = false, version = "0.3.8" }
31+
rstsr-openblas = { path = "./rstsr-openblas", default-features = false, version = "0.3.9" }
32+
rstsr-blas-traits = { path = "./rstsr-blas-traits", default-features = false, version = "0.3.9" }
33+
rstsr-linalg-traits = { path = "./rstsr-linalg-traits", default-features = false, version = "0.3.9" }
34+
rstsr-sci-traits = { path = "./rstsr-sci-traits", default-features = false, version = "0.3.9" }
3535
# develop dependencies that should not publish
3636
rstsr-test-manifest = { path = "./rstsr-test-manifest", default-features = false }
3737
# ffi dependencies

0 commit comments

Comments
 (0)