From 0004d1e2a7cf6e5e581bef14b2819755b81cbc71 Mon Sep 17 00:00:00 2001 From: Lukas Devos Date: Thu, 29 Jan 2026 15:01:10 -0500 Subject: [PATCH 1/4] update changelog --- docs/src/changelog.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 00358d43..ec5637b1 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -18,7 +18,7 @@ When making changes to this project, please update the "Unreleased" section with When releasing a new version, move the "Unreleased" changes to a new version section with the release date. -## [Unreleased](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/compare/v0.6.3...HEAD) +## [Unreleased](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/compare/v0.6.4...HEAD) ### Added @@ -30,6 +30,26 @@ When releasing a new version, move the "Unreleased" changes to a new version sec ### Fixed +## [0.6.4](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/compare/v0.6.3...v0.6.4) - 2026-01-29 + +### Added + +- Tests for randomized SVD algorithms ([#159](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/159)). + +### Changed + +- Bumped Mooncake to v0.5 ([#164](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/164)). +- Test infrastructure: migrated AD tests to `TestSuite` ([#126](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/126)). + +### Deprecated + +### Removed + +### Fixed + +- Mooncake AD rules now correctly set/reset in and outputs ([#158](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/158)). +- Storage type is now retained in `_ind_intersect` for GPU arrays ([#161](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/161)). + ## [0.6.3](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/compare/v0.6.2...v0.6.3) - 2026-01-23 ### Added From b9fcba2ecf6f6e458b30c3b11d874184f282dd3c Mon Sep 17 00:00:00 2001 From: Lukas Devos Date: Thu, 29 Jan 2026 15:05:13 -0500 Subject: [PATCH 2/4] bump v0.6.4 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 42124239..e79efaa8 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "MatrixAlgebraKit" uuid = "6c742aac-3347-4629-af66-fc926824e5e4" -version = "0.6.3" +version = "0.6.4" authors = ["Jutho and contributors"] [deps] From 9ce68001d8cac7952928a90eebcd48656e77ed82 Mon Sep 17 00:00:00 2001 From: Lukas Devos Date: Thu, 29 Jan 2026 15:33:35 -0500 Subject: [PATCH 3/4] add list of contributors --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 7660dfc7..2663346d 100644 --- a/README.md +++ b/README.md @@ -32,3 +32,15 @@ The main goals of this package are: * Ability to pass pre-allocated output arrays where the result of a computation is stored. * Ability to easily switch between different backends and algorithms for the same operation. * First class availability of pullback rules that can be used in combination with different AD ecosystems. + +## Contributors + +MatrixAlgebraKit.jl is developed and maintained by the [QuantumKit](https://github.com/QuantumKitHub) community. +We gratefully acknowledge the contributions of: + +- **[Jutho Haegeman](https://github.com/Jutho)** +- **[Lukas Devos](https://github.com/lkdvos)** +- **[Katharine Hyatt](https://github.com/kshyatt)** + +As well as the variety of other contributors who have submitted issues, provided feedback, and helped improve this package. +For a complete list of contributors, see the [GitHub contributors page](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/graphs/contributors). From 23414cdac279bb0f06939484a999ce24e7fca3d9 Mon Sep 17 00:00:00 2001 From: Lukas Devos Date: Fri, 30 Jan 2026 05:58:16 -0500 Subject: [PATCH 4/4] Update Project.toml Co-authored-by: Jutho --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index e79efaa8..e079639a 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "MatrixAlgebraKit" uuid = "6c742aac-3347-4629-af66-fc926824e5e4" version = "0.6.4" -authors = ["Jutho and contributors"] +authors = ["Jutho Haegeman , Lukas Devos, Katharine Hyatt and contributors"] [deps] LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"