Skip to content

Commit cf860e1

Browse files
committed
Update to v0.7.5
1 parent 66b4f9e commit cf860e1

2 files changed

Lines changed: 29 additions & 15 deletions

File tree

CHANGELOG.md

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

3+
## v0.7.5 -- 2026-05-24
4+
5+
All changes at RESTGroup/rstsr#80.
6+
7+
Enhancement
8+
9+
- Allow LowerExp/UpperExp (scientific float print).
10+
11+
API breaking changes (user should not feel that)
12+
13+
- Changes the behavior of Display print, now the tensor will only be referenced when printing at least for CPU devices.
14+
15+
We still make Debug print to copy the whole tensor. In this way, the debug print uses minimal trait bounds, easier for debugging in other devices. This behavior may also change if necessary.
16+
317
## v0.7.4 -- 2026-05-21
418

519
All changes at RESTGroup/rstsr#79

Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ members = [
1818
]
1919

2020
[workspace.package]
21-
version = "0.7.4"
21+
version = "0.7.5"
2222
edition = "2021"
2323
rust-version = "1.82.0"
2424
description = "An n-Dimension Rust Tensor Toolkit"
@@ -28,24 +28,24 @@ categories = ["science"]
2828
license = "Apache-2.0"
2929

3030
[workspace.dependencies]
31-
rstsr = { path = "./rstsr", default-features = false, version = "0.7.4" }
32-
rstsr-core = { path = "./rstsr-core", default-features = false, version = "0.7.4" }
31+
rstsr = { path = "./rstsr", default-features = false, version = "0.7.5" }
32+
rstsr-core = { path = "./rstsr-core", default-features = false, version = "0.7.5" }
3333
# members (without core)
34-
rstsr-common = { path = "./rstsr-common", default-features = false, version = "0.7.4" }
35-
rstsr-dtype-traits = { path = "./rstsr-dtype-traits", default-features = false, version = "0.7.4" }
36-
rstsr-native-impl = { path = "./rstsr-native-impl", default-features = false, version = "0.7.4" }
34+
rstsr-common = { path = "./rstsr-common", default-features = false, version = "0.7.5" }
35+
rstsr-dtype-traits = { path = "./rstsr-dtype-traits", default-features = false, version = "0.7.5" }
36+
rstsr-native-impl = { path = "./rstsr-native-impl", default-features = false, version = "0.7.5" }
3737
# members (traits and core-extensions)
38-
rstsr-blas-traits = { path = "./rstsr-blas-traits", default-features = false, version = "0.7.4" }
39-
rstsr-linalg-traits = { path = "./rstsr-linalg-traits", default-features = false, version = "0.7.4" }
40-
rstsr-sci-traits = { path = "./rstsr-sci-traits", default-features = false, version = "0.7.4" }
38+
rstsr-blas-traits = { path = "./rstsr-blas-traits", default-features = false, version = "0.7.5" }
39+
rstsr-linalg-traits = { path = "./rstsr-linalg-traits", default-features = false, version = "0.7.5" }
40+
rstsr-sci-traits = { path = "./rstsr-sci-traits", default-features = false, version = "0.7.5" }
4141
# members (device)
42-
rstsr-openblas = { path = "./crates-device/rstsr-openblas", default-features = false, version = "0.7.4" }
43-
rstsr-mkl = { path = "./crates-device/rstsr-mkl", default-features = false, version = "0.7.4" }
44-
rstsr-blis = { path = "./crates-device/rstsr-blis", default-features = false, version = "0.7.4" }
45-
rstsr-aocl = { path = "./crates-device/rstsr-aocl", default-features = false, version = "0.7.4" }
46-
rstsr-kml = { path = "./crates-device/rstsr-kml", default-features = false, version = "0.7.4" }
42+
rstsr-openblas = { path = "./crates-device/rstsr-openblas", default-features = false, version = "0.7.5" }
43+
rstsr-mkl = { path = "./crates-device/rstsr-mkl", default-features = false, version = "0.7.5" }
44+
rstsr-blis = { path = "./crates-device/rstsr-blis", default-features = false, version = "0.7.5" }
45+
rstsr-aocl = { path = "./crates-device/rstsr-aocl", default-features = false, version = "0.7.5" }
46+
rstsr-kml = { path = "./crates-device/rstsr-kml", default-features = false, version = "0.7.5" }
4747
# members (plugin)
48-
rstsr-tblis = { path = "./crates-plugin/rstsr-tblis", default-features = false, version = "0.7.4" }
48+
rstsr-tblis = { path = "./crates-plugin/rstsr-tblis", default-features = false, version = "0.7.5" }
4949
# develop dependencies that should not publish
5050
rstsr-test-manifest = { path = "./rstsr-test-manifest", default-features = false }
5151
# ffi dependencies

0 commit comments

Comments
 (0)