Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MatrixAlgebraKit"
uuid = "6c742aac-3347-4629-af66-fc926824e5e4"
version = "0.6.3"
authors = ["Jutho <jutho.haegeman@ugent.be> and contributors"]
version = "0.6.4"
authors = ["Jutho Haegeman <jutho.haegeman@ugent.be>, Lukas Devos, Katharine Hyatt and contributors"]

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
22 changes: 21 additions & 1 deletion docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down