Skip to content

Commit

Permalink
Merge pull request #56
Browse files Browse the repository at this point in the history
Rename `QOExt` to `QuantumOpticsExt`
  • Loading branch information
ytdHuang committed Feb 19, 2024
2 parents 8cc588c + 382f91a commit 4d4e522
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Runtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- julia-version: '1'
os: 'ubuntu-latest'
arch: 'x64'
group: 'HierarchicalEOM_QOExt'
group: 'HierarchicalEOM_QuantumOpticsExt'
- julia-version: '1'
os: 'ubuntu-latest'
arch: 'x64'
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ QuantumToolbox = "6c2fb7c5-b903-41d2-bc5e-5a7c320b9fab"

[extensions]
HierarchicalEOM_CUDAExt = "CUDA"
HierarchicalEOM_QOExt = "QuantumOptics"
HierarchicalEOM_QuantumOpticsExt = "QuantumOptics"
HierarchicalEOM_QuantumToolboxExt = "QuantumToolbox"

[compat]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module HierarchicalEOM_QOExt
module HierarchicalEOM_QuantumOpticsExt

import QuantumOptics: AbstractOperator, Operator
using HierarchicalEOM
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ if GROUP == "HierarchicalEOM_CUDAExt"
end
end

if (GROUP == "All") || (GROUP == "HierarchicalEOM_QOExt")
if (GROUP == "All") || (GROUP == "HierarchicalEOM_QuantumOpticsExt")
Pkg.activate("QuantumOptics")
Pkg.develop(PackageSpec(path = dirname(@__DIR__)))
Pkg.instantiate()
Expand Down

2 comments on commit 4d4e522

@ytdHuang
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/101162

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.4.0 -m "<description of version>" 4d4e5225b35f14198f9c21aec6ca5c05d10ae4d7
git push origin v1.4.0

Please sign in to comment.