Skip to content

Commit 5dc1a9b

Browse files
committed
Merge branch 'main' into fix/makie-warning
2 parents 2a3e56a + c986d84 commit 5dc1a9b

21 files changed

+261
-145
lines changed

.github/workflows/Benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
if: ${{ !github.event.pull_request.draft }}
3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838
- uses: julia-actions/setup-julia@v2
3939
with:
4040
version: '1'

.github/workflows/CI-Julia-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- 'Core'
4949

5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v5
5252
- uses: julia-actions/setup-julia@v2
5353
with:
5454
version: ${{ matrix.version }}

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
group: 'AutoDiff_Ext'
7676

7777
steps:
78-
- uses: actions/checkout@v4
78+
- uses: actions/checkout@v5
7979
- uses: julia-actions/setup-julia@v2
8080
with:
8181
version: ${{ matrix.version }}

.github/workflows/ChangeLogCheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
skipLabels: 'Skip ChangeLog'
1717

1818
# check whether the format of CHANGELOG.md is correct
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- uses: julia-actions/setup-julia@v2
2121
with:
2222
version: '1'

.github/workflows/CleanPreviewDoc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout gh-pages branch
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
ref: gh-pages
1919
- name: Delete preview and history + push changes

.github/workflows/Code-Quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- 'Code-Quality'
4949

5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v5
5252
- uses: julia-actions/setup-julia@v2
5353
with:
5454
version: ${{ matrix.version }}

.github/workflows/FormatCheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
if: ${{ !github.event.pull_request.draft }}
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- uses: julia-actions/setup-julia@v2
3030
with:
3131
version: '1'

.github/workflows/SpellCheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout Actions Repository
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v5
1212
- name: Check spelling
13-
uses: crate-ci/typos@v1.35.3
13+
uses: crate-ci/typos@v1.36.2

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
if: ${{ !github.event.pull_request.draft }}
4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747
- uses: julia-actions/setup-julia@v2
4848
with:
4949
version: '1'

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased](https://github.com/qutip/QuantumToolbox.jl/tree/main)
99

10+
## [v0.35.0]
11+
Release date: 2025-09-03
12+
13+
- Add support of `QobjEvo` for `steadystate` (ODE solver only). ([#536])
14+
- Changes to `SteadyStateODESolver`. ([#537])
15+
- Introduce the tolerances for `steadystate` terminate condition (two new fields: `terminate_reltol = 1e-5` and `terminate_abstol = 1e-7`)
16+
- Fix keyword argument handling for `SteadyStateODESolver` before passing to `mesolve`.
17+
- Fix incorrect `negativity` and `partial_transpose` for arbitrary subsystem dimension. ([#539])
18+
19+
## [v0.34.1]
20+
Release date: 2025-08-23
21+
1022
- Improve Bloch sphere rendering for animation. ([#520])
23+
- Add support to `Enzyme.jl` for `sesolve` and `mesolve`. ([#531])
1124

1225
## [v0.34.0]
1326
Release date: 2025-07-29
@@ -208,6 +221,8 @@ Release date: 2024-11-13
208221
[v0.32.1]: https://github.com/qutip/QuantumToolbox.jl/releases/tag/v0.32.1
209222
[v0.33.0]: https://github.com/qutip/QuantumToolbox.jl/releases/tag/v0.33.0
210223
[v0.34.0]: https://github.com/qutip/QuantumToolbox.jl/releases/tag/v0.34.0
224+
[v0.34.1]: https://github.com/qutip/QuantumToolbox.jl/releases/tag/v0.34.1
225+
[v0.35.0]: https://github.com/qutip/QuantumToolbox.jl/releases/tag/v0.35.0
211226
[#86]: https://github.com/qutip/QuantumToolbox.jl/issues/86
212227
[#139]: https://github.com/qutip/QuantumToolbox.jl/issues/139
213228
[#271]: https://github.com/qutip/QuantumToolbox.jl/issues/271
@@ -295,3 +310,7 @@ Release date: 2024-11-13
295310
[#515]: https://github.com/qutip/QuantumToolbox.jl/issues/515
296311
[#517]: https://github.com/qutip/QuantumToolbox.jl/issues/517
297312
[#520]: https://github.com/qutip/QuantumToolbox.jl/issues/520
313+
[#531]: https://github.com/qutip/QuantumToolbox.jl/issues/531
314+
[#536]: https://github.com/qutip/QuantumToolbox.jl/issues/536
315+
[#537]: https://github.com/qutip/QuantumToolbox.jl/issues/537
316+
[#539]: https://github.com/qutip/QuantumToolbox.jl/issues/539

0 commit comments

Comments
 (0)