Skip to content
Open
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
16 changes: 16 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
cff-version: 1.2.0
message: "If you use this software, please cite it using these metadata."
title: "MatrixAlgebraKit.jl"
type: software
url: "https://github.com/QuantumKitHub/MatrixAlgebraKit.jl"
repository-code: "https://github.com/QuantumKitHub/MatrixAlgebraKit.jl"
authors:
- given-names: Jutho
family-names: Haegeman
email: jutho.haegeman@ugent.be
- given-names: Lukas
family-names: Devos
- given-names: Katharine
family-names: Hyatt
version: "0.6.9"
date-released: "2026-07-10"
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "MatrixAlgebraKit"
uuid = "6c742aac-3347-4629-af66-fc926824e5e4"
version = "0.6.8"
version = "0.6.9"
authors = ["Jutho Haegeman <jutho.haegeman@ugent.be>, Lukas Devos, Katharine Hyatt and contributors"]

[deps]
Expand Down
10 changes: 9 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.8...HEAD)
## [Unreleased](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/compare/v0.6.9...HEAD)

### Added

Expand All @@ -32,6 +32,14 @@ When releasing a new version, move the "Unreleased" changes to a new version sec

### Performance

## [0.6.9](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/compare/v0.6.8...v0.6.9) - 2026-07-10

### Added

- Matrix `exponential` / `exponential!` function with selectable algorithms: `MatrixFunctionViaLA` (Padé via `LinearAlgebra`), `MatrixFunctionViaEig` / `MatrixFunctionViaEigh` (via eigendecomposition), and `DiagonalAlgorithm` for `Diagonal` inputs; supports the scaled `exponential((τ, A))` form ([#94](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/94), [#251](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/251), [#252](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/252), [#253](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/253)).
- Native, LAPACK-free scaling-and-squaring Taylor algorithm `MatrixFunctionViaTaylor`, outperforming LinearAlgebra.jl and the default for dense matrices and the only path covering arbitrary-precision element types such as `BigFloat` ([#243](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/243)).
- Forward-mode (pushforward) automatic-differentiation rules for the polar, `eig` / `eigh`, and SVD decompositions and the projection / `orth`–`null` functions, available through the Enzyme and Mooncake extensions ([#242](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/242), [#244](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/244), [#245](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/245), [#246](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/246), [#247](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/247)).

## [0.6.8](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/compare/v0.6.7...v0.6.8) - 2026-05-20

### Added
Expand Down
Loading