Skip to content

Commit e4ccef5

Browse files
authored
Fix release date format in CHANGELOG (#337)
1 parent ff73a5a commit e4ccef5

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010

1111

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

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

16-
## [v0.23.0] (2024-12-04)
17+
## [v0.23.0]
18+
Release date: 2024-12-04
1719

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

21-
## [v0.22.0] (2024-11-20)
23+
## [v0.22.0]
24+
Release date: 2024-11-20
2225

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

26-
## [v0.21.5] (2024-11-15)
29+
## [v0.21.5]
30+
Release date: 2024-11-15
2731

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

30-
## [v0.21.4] (2024-11-13)
34+
## [v0.21.4]
35+
Release date: 2024-11-13
3136

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

docs/make.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ using Changelog
99

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

12-
const DRAFT = false # set `true` to disable cell evaluation
12+
# some options for `makedocs`
13+
const DRAFT = false # set `true` to disable cell evaluation
14+
const DOCTEST = true # set `false` to skip doc tests
1315

1416
# generate bibliography
1517
bib = CitationBibliography(
@@ -83,6 +85,7 @@ makedocs(;
8385
repo = "github.com/qutip/QuantumToolbox.jl",
8486
),
8587
draft = DRAFT,
88+
doctest = DOCTEST,
8689
plugins = [bib],
8790
)
8891

0 commit comments

Comments
 (0)