diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index ef9045062..cc2245f6e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -16,7 +16,7 @@ body: label: Code to Reproduce the Bug description: Please provide a minimal working example. Paste your code directly (It will be automatically formatted, so there's no need for backticks) placeholder: "using QuantumToolbox\nprint(qeye(2))" - render: shell + render: julia - type: textarea id: bug-output attributes: @@ -37,7 +37,7 @@ body: attributes: label: Your Environment description: Please use `QuantumToolbox.about()` or `QuantumToolbox.versioninfo()` to get the information about your environment and paste it here (automatically formatted) - placeholder: "Julia Ver. ***\nQuantumToolbox Ver. ***\nLinearSolve Ver. ***\nOrdinaryDiffEqCore Ver. ***\nOS : ***\nWORD_SIZE: ***\nLIBM : ***\nLLVM : ***\nBLAS : ***" + placeholder: "Julia Ver. ***\nQuantumToolbox Ver. ***\nSciMLOperators Ver. ***\nLinearSolve Ver. ***\nOrdinaryDiffEqCore Ver. ***\nOS : ***\nWORD_SIZE: ***\nLIBM : ***\nLLVM : ***\nBLAS : ***" render: shell validations: required: true diff --git a/src/versioninfo.jl b/src/versioninfo.jl index abe725f59..fe288536e 100644 --- a/src/versioninfo.jl +++ b/src/versioninfo.jl @@ -23,18 +23,19 @@ function versioninfo(io::IO = stdout) " Alberto Mercurio and Yi-Te Huang\n", ) - # print package informations + # print package information println( io, "Package information:\n", "====================================\n", "Julia Ver. $(VERSION)\n", "QuantumToolbox Ver. $(_get_pkg_version("QuantumToolbox"))\n", + "SciMLOperators Ver. $(_get_pkg_version("SciMLOperators"))\n", "LinearSolve Ver. $(_get_pkg_version("LinearSolve"))\n", "OrdinaryDiffEqCore Ver. $(_get_pkg_version("OrdinaryDiffEqCore"))\n", ) - # print System informations + # print System information println(io, "System information:") println(io, "====================================") println(io, """OS : $(OS_name) ($(Sys.MACHINE))""")