diff --git a/Project.toml b/Project.toml index 42124239..e079639a 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "MatrixAlgebraKit" uuid = "6c742aac-3347-4629-af66-fc926824e5e4" -version = "0.6.3" -authors = ["Jutho and contributors"] +version = "0.6.4" +authors = ["Jutho Haegeman , Lukas Devos, Katharine Hyatt and contributors"] [deps] LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" 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). 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