|
| 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.1.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 | + |
| 18 | +When releasing a new version, move the "Unreleased" changes to a new version section with the release date. |
| 19 | + |
| 20 | +## [Unreleased](https://github.com/QuantumKitHub/MPSKit.jl/compare/v0.13.9...HEAD) |
| 21 | + |
| 22 | +### Added |
| 23 | + |
| 24 | +### Changed |
| 25 | + |
| 26 | +### Deprecated |
| 27 | + |
| 28 | +### Removed |
| 29 | + |
| 30 | +### Fixed |
| 31 | + |
| 32 | +## [0.13.9](https://github.com/QuantumKitHub/MPSKit.jl/compare/v0.13.8...v0.13.9) - 2026-02-03 |
| 33 | + |
| 34 | +### Added |
| 35 | + |
| 36 | +- `LocalPreferences.toml` file to ensure `TensorOperations` properly precompiles on testing |
| 37 | + infrastructure |
| 38 | +- `GeometryStyle` and `OperatorStyle` traits for dispatching on finite/infinite geometry and |
| 39 | + operator types ([#352](https://github.com/QuantumKitHub/MPSKit.jl/pull/352), [#354](https://github.com/QuantumKitHub/MPSKit.jl/pull/354)) |
| 40 | +- `Base.isfinite` methods for MPS types ([#347](https://github.com/QuantumKitHub/MPSKit.jl/pull/347)) |
| 41 | +- Bose-Hubbard example ([#342](https://github.com/QuantumKitHub/MPSKit.jl/pull/342)) |
| 42 | +- WindowMPS example update ([#350](https://github.com/QuantumKitHub/MPSKit.jl/pull/350)) |
| 43 | +- Multifusion category compatibility ([#297](https://github.com/QuantumKitHub/MPSKit.jl/pull/297)) |
| 44 | + |
| 45 | +### Fixed |
| 46 | + |
| 47 | +- Dynamic tolerances yielded `NaN` during the initialization stage due to `1 / sqrt(iter)` |
| 48 | + where `iter = 0` ([#335](https://github.com/QuantumKitHub/MPSKit.jl/pull/335)) |
| 49 | +- `InfiniteMPOHamiltonian` environments with low bond dimension and high Krylov dimension now are properly |
| 50 | + clamped ([#335](https://github.com/QuantumKitHub/MPSKit.jl/pull/335)) |
| 51 | +- Logical operator precedence in `getproperty` function ([#346](https://github.com/QuantumKitHub/MPSKit.jl/pull/346)) |
| 52 | +- Typo in `VUMPSSvdCut` ([#361](https://github.com/QuantumKitHub/MPSKit.jl/pull/361)) |
| 53 | +- Typo in time formatting for logs ([#336](https://github.com/QuantumKitHub/MPSKit.jl/pull/336)) |
| 54 | +- Domain/codomain of `MPODerivativeOperator` ([#370](https://github.com/QuantumKitHub/MPSKit.jl/pull/370)) |
| 55 | +- In-place operations handled more carefully ([#337](https://github.com/QuantumKitHub/MPSKit.jl/pull/337)) |
| 56 | +- Orthogonalization algorithms now use correct methods ([#373](https://github.com/QuantumKitHub/MPSKit.jl/pull/373)) |
| 57 | + |
| 58 | +### Changed |
| 59 | + |
| 60 | +- The `changebonds(state, ::RandExpand)` algorithm now no longer has to perform a |
| 61 | + truncated SVD to obtain the desired spaces, and instead sample the space directly |
| 62 | + and then generates a random isometry. This should be slightly more performant, but |
| 63 | + otherwise equivalent ([#335](https://github.com/QuantumKitHub/MPSKit.jl/pull/335)) |
| 64 | +- `IDMRG` refactored to follow the `IterativeSolver` interface and share code between |
| 65 | + `IDMRG` and `IDMRG2` ([#348](https://github.com/QuantumKitHub/MPSKit.jl/pull/348)) |
| 66 | +- Bumped compatibility for TensorKit 0.16 and MatrixAlgebraKit 0.6 ([#365](https://github.com/QuantumKitHub/MPSKit.jl/pull/365)) |
| 67 | +- Removed `_left_orth` and `_right_orth` workarounds in favor of new orthogonalization methods |
| 68 | +- Reduced allocation while computing Galerkin error ([#366](https://github.com/QuantumKitHub/MPSKit.jl/pull/366)) |
| 69 | +- Updated `show` methods to reflect new TensorKit printing ([#341](https://github.com/QuantumKitHub/MPSKit.jl/pull/341)) |
| 70 | +- More informative errors for finite MPS ([#367](https://github.com/QuantumKitHub/MPSKit.jl/pull/367)) |
| 71 | +- Minor documentation and docstring improvements ([#363](https://github.com/QuantumKitHub/MPSKit.jl/pull/363), [#372](https://github.com/QuantumKitHub/MPSKit.jl/pull/372), [#371](https://github.com/QuantumKitHub/MPSKit.jl/pull/371)) |
| 72 | + |
| 73 | +### Deprecated |
| 74 | + |
| 75 | +### Removed |
| 76 | + |
| 77 | +## [0.13.8](https://github.com/QuantumKitHub/MPSKit.jl/releases/tag/v0.13.8) - 2024-10-31 |
| 78 | + |
| 79 | +See full history and previous releases on [GitHub](https://github.com/QuantumKitHub/MPSKit.jl/releases). |
0 commit comments