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

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

- Fix `cite()` bibtex output. ([#552])

## [v0.36.0]
Release date: 2025-09-29

Expand Down Expand Up @@ -323,3 +325,4 @@ Release date: 2024-11-13
[#539]: https://github.com/qutip/QuantumToolbox.jl/issues/539
[#544]: https://github.com/qutip/QuantumToolbox.jl/issues/544
[#546]: https://github.com/qutip/QuantumToolbox.jl/issues/546
[#552]: https://github.com/qutip/QuantumToolbox.jl/issues/552
4 changes: 2 additions & 2 deletions src/versioninfo.jl
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function cite(io::IO = stdout)
author = {Mercurio, Alberto and Huang, Yi-Te and Cai, Li-Xun and Chen, Yueh-Nan and Savona, Vincenzo and Nori, Franco},
journal = {{Quantum}},
issn = {2521-327X},
publisher = {{Verein zur F{\"{o}}rderung des Open Access Publizierens in den Quantenwissenschaften}},
publisher = {{Verein zur F{\\"{o}}rderung des Open Access Publizierens in den Quantenwissenschaften}},
volume = {9},
pages = {1866},
month = sep,
Expand All @@ -98,5 +98,5 @@ function cite(io::IO = stdout)
url = {https://doi.org/10.22331/q-2025-09-29-1866}
}
"""
return println(io, citation)
return print(io, citation)
end
4 changes: 2 additions & 2 deletions test/core-test/utilities.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
""" author = {Mercurio, Alberto and Huang, Yi-Te and Cai, Li-Xun and Chen, Yueh-Nan and Savona, Vincenzo and Nori, Franco},\n""" *
""" journal = {{Quantum}},\n""" *
""" issn = {2521-327X},\n""" *
""" publisher = {{Verein zur F{\"{o}}rderung des Open Access Publizierens in den Quantenwissenschaften}},\n""" *
""" publisher = {{Verein zur F{\\"{o}}rderung des Open Access Publizierens in den Quantenwissenschaften}},\n""" *
""" volume = {9},\n""" *
""" pages = {1866},\n""" *
""" month = sep,\n""" *
""" year = {2025},\n""" *
""" doi = {10.22331/q-2025-09-29-1866},\n""" *
""" url = {https://doi.org/10.22331/q-2025-09-29-1866}\n""" *
"""}\n\n"""
"""}\n"""

@testset "n_thermal" begin
ω1 = rand(Float64)
Expand Down
Loading