|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## Guidelines for updating this changelog |
| 9 | + |
| 10 | +When making changes to this project, please update the "Unreleased" section with your changes under the appropriate category: |
| 11 | + |
| 12 | +- **Added** for new features. |
| 13 | +- **Changed** for changes in existing functionality. |
| 14 | +- **Deprecated** for soon-to-be removed features. |
| 15 | +- **Removed** for now removed features. |
| 16 | +- **Fixed** for any bug fixes. |
| 17 | +- **Security** in case of vulnerabilities. |
| 18 | + |
| 19 | +When releasing a new version, move the "Unreleased" changes to a new version section with the release date. |
| 20 | + |
| 21 | +[Unreleased]: https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/compare/v0.6.0...HEAD |
| 22 | +[0.6.0]: https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/releases/tag/v0.6.0 |
| 23 | + |
| 24 | +## [Unreleased] |
| 25 | + |
| 26 | +### Added |
| 27 | + |
| 28 | +### Changed |
| 29 | + |
| 30 | +### Deprecated |
| 31 | + |
| 32 | +### Removed |
| 33 | + |
| 34 | +### Fixed |
| 35 | + |
| 36 | +### Security |
| 37 | + |
| 38 | +## [0.6.0] - 2025-11-14 |
| 39 | + |
| 40 | +### Added |
| 41 | +- New `project_isometric` function for projecting matrices onto isometric manifold ([#67](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/67)) |
| 42 | +- New `PolarNewton` algorithm for polar decomposition ([#67](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/67)) |
| 43 | +- New matrix property functions: `ishermitian`, `isantihermitian`, `hermitianpart!`, `hermitianpart`, `antihermitianpart!`, and `antihermitianpart` ([#64](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/64)) |
| 44 | +- Support for `BigFloat` via new `GenericLinearAlgebra` extension ([#87](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/87)) |
| 45 | +- Mooncake reverse-mode AD rules ([#85](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/85)) |
| 46 | +- GPU support for image and null space computations ([#82](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/82)) |
| 47 | +- GPU support for polar decomposition ([#83](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/83)) |
| 48 | +- GPU support for new projection operations ([#81](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/81)) |
| 49 | +- Output truncation error for truncated decompositions ([#75](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/75)) |
| 50 | +- Documentation for truncated decomposition keyword arguments ([#71](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/71)) |
| 51 | +- Default algorithm implementations for GPU wrapper array types ([#49](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/49)) |
| 52 | + |
| 53 | +### Changed |
| 54 | + |
| 55 | +- Made `gaugefix!` optional ([#95](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/95)) |
| 56 | +- Renamed `isisometry` to `isisometric` for consistency with `project_isometric` ([#73](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/73)) |
| 57 | +- Refactored `left_orth`, `right_orth`, `left_null` and `right_null` interface ([#79](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/79)) |
| 58 | +- Improved GPU support for SVD operations ([#80](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/80)) |
| 59 | +- Loosened strictness on hermitian checks ([#78](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/78)) |
| 60 | +- Updated pullback tolerances ([#92](https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/pull/92)) |
| 61 | + |
| 62 | +### Removed |
| 63 | + |
| 64 | +### Fixed |
0 commit comments