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
15 changes: 10 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



## [v0.23.1] (2024-12-06)
## [v0.23.1]
Release date: 2024-12-06

- Update `[compat]` to fix the incompatibility between `QuantumToolbox v0.22.0+` and `DiffEqCallbacks < v4.2.1`. ([#335])

## [v0.23.0] (2024-12-04)
## [v0.23.0]
Release date: 2024-12-04

- Change `SingleSiteOperator` with the more general `MultiSiteOperator`. ([#324])
- Make `spectrum` and `correlation` functions align with `Python QuTiP`, introduce spectrum solver `PseudoInverse`, remove spectrum solver `FFTCorrelation`, and introduce `spectrum_correlation_fft`. ([#330])

## [v0.22.0] (2024-11-20)
## [v0.22.0]
Release date: 2024-11-20

- Change the parameters structure of `sesolve`, `mesolve` and `mcsolve` functions to possibly support automatic differentiation. ([#311])
- Fix type instability and reduce extra memory allocation in `liouvillian`. ([#315], [#318])

## [v0.21.5] (2024-11-15)
## [v0.21.5]
Release date: 2024-11-15

- This is a demonstration of how to bump version number and also modify `CHANGELOG.md` before new release. ([#309])

## [v0.21.4] (2024-11-13)
## [v0.21.4]
Release date: 2024-11-13

- This is just a demonstration about [`Changelog.jl`](https://github.com/JuliaDocs/Changelog.jl). ([#139], [#306])

Expand Down
5 changes: 4 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ using Changelog

DocMeta.setdocmeta!(QuantumToolbox, :DocTestSetup, :(using QuantumToolbox); recursive = true)

const DRAFT = false # set `true` to disable cell evaluation
# some options for `makedocs`
const DRAFT = false # set `true` to disable cell evaluation
const DOCTEST = true # set `false` to skip doc tests

# generate bibliography
bib = CitationBibliography(
Expand Down Expand Up @@ -83,6 +85,7 @@ makedocs(;
repo = "github.com/qutip/QuantumToolbox.jl",
),
draft = DRAFT,
doctest = DOCTEST,
plugins = [bib],
)

Expand Down
Loading