Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to qoqo 1.15 + SqrtPauliY InvSqrtPauliY Support #114

Merged
merged 3 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

This changelog track changes to the qoqo qasm project starting at version 0.5.0

### 0.12.1

* Added support for `SqrtPauliY` and `InvSqrtPauliY`
* Updated to qoqo 1.15

### 0.12.0

* Added support for `ControlledRotateX` and `ControlledRotateXY`
Expand Down
77 changes: 34 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions qoqo_qasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qoqo_qasm"
version = "0.12.0"
version = "0.12.1"
authors = ["HQS Quantum Simulations <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -28,8 +28,8 @@ crate-type = ["cdylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
qoqo = { version = "~1.14", default-features = false }
roqoqo = { version = "~1.14", features = ["serialize"] }
qoqo = { version = "~1.15", default-features = false }
roqoqo = { version = "~1.15", features = ["serialize"] }
roqoqo-qasm = { version = "~0.12", path = "../roqoqo-qasm" }

[dependencies.pyo3]
Expand Down
2 changes: 1 addition & 1 deletion qoqo_qasm/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "qoqo_qasm"
version = "0.12.0"
version = "0.12.1"
dependencies = ['qoqo>=1.14', 'qoqo_calculator_pyo3>=1.2']
dberthault marked this conversation as resolved.
Show resolved Hide resolved
license = { text = "Apache-2.0 AND Apache-2.0 with LLVM-exception AND MIT AND Unicode-DFS-2016 AND BSD-2-Clause AND BSD-3-CLause" }
maintainers = [
Expand Down
Loading
Loading