Skip to content

Commit

Permalink
Fix conflict with new version [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
GTorlai committed Mar 25, 2021
1 parent 4b53be5 commit 3e03dac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PastaQ"
uuid = "30b07047-aa8b-4c78-a4e8-24d720215c19"
authors = ["Giacomo Torlai <[email protected]>", "Matthew Fishman <[email protected]>"]
version = "0.0.6"
version = "0.0.7"

[deps]
HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f"
Expand Down
6 changes: 3 additions & 3 deletions src/circuits/gates.jl
Original file line number Diff line number Diff line change
Expand Up @@ -387,11 +387,11 @@ gate(::GateName"noisePD"; kwargs...) =
# Qubit site type
#

space(::SiteType"Qubit") = 2
#space(::SiteType"Qubit") = 2

state(::SiteType"Qubit", ::StateName"0") = 1
#state(::SiteType"Qubit", ::StateName"0") = 1

state(::SiteType"Qubit", ::StateName"1") = 2
#state(::SiteType"Qubit", ::StateName"1") = 2

#
# Basis definitions (eigenbases of measurement gates)
Expand Down

5 comments on commit 3e03dac

@GTorlai
Copy link
Owner 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/32761

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 v0.0.7 -m "<description of version>" 3e03dac70d0f9f83f083cfc019a558d4e266a84d
git push origin v0.0.7

@mtfishman
Copy link
Collaborator

Choose a reason for hiding this comment

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

Great, nice to see it didn't require many changes.

@mtfishman
Copy link
Collaborator

Choose a reason for hiding this comment

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

@GTorlai probably we want to bump the compat for ITensors to 0.1.41, since earlier versions won't work anymore.

@GTorlai
Copy link
Owner Author

Choose a reason for hiding this comment

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

ok

Please sign in to comment.