-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchangelog
44 lines (26 loc) · 1.28 KB
/
changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Changelog
## v0.1.0
Initial release. Most features in Python Array API has been implemented.
## v0.2.0 - 2025-03-11
This release features on BLAS and linalg implementations. Currently, functions such as `cholesky`, `eigh`, `solve_general` in `rstsr-linalg-traits` have been implemented.
Also many enhancements in `rstsr-core`.
## v0.2.1 - 2025-03-24
Bug fix:
- fix rayon pool memory blow up ([#13](https://github.com/RESTGroup/rstsr/pull/13))
## v0.2.2 - 2025-03-25
API breaking changes:
- Rayon thread pool getter function `get_pool` changed, added `get_current_pool`, removed `get_serial_pool` ([#14](https://github.com/RESTGroup/rstsr/pull/14)).
Code style changes ([#15](https://github.com/RESTGroup/rstsr/pull/15))
## v0.2.4 -- 2025-03-25
Bug fix:
- fix `pack_tril` (correctness fix, trait bound fix).
## v0.2.5 -- 2025-03-31
Bug fix:
- fix `pack_tril` (correctness fix for col-major case).
## v0.2.6 -- 2025-04-02
Feature addition:
- Column major is now supported ([#16](https://github.com/RESTGroup/rstsr/pull/16)).
## v0.2.7 -- 2025-04-15
Internal refactor:
- Move out crate `rstsr-openblas-ffi` to rstsr-ffi repository, changes FFI bindings ([#19](https://github.com/RESTGroup/rstsr/pull/19)).
- Now `row_major` and `col_major` features are mutually exclusive in complie time.