Skip to content

Commit

Permalink
Update to qoqo 1.15 + SqrtPauliY InvSqrtPauliY Support (#114)
Browse files Browse the repository at this point in the history
* Update to qoqo 1.15

* wrong definition

* missing tests
  • Loading branch information
dberthault authored Jul 24, 2024
1 parent ccdb7c7 commit b881867
Show file tree
Hide file tree
Showing 8 changed files with 1,939 additions and 3,581 deletions.
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 <info@quantumsimulations.de>"]
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
4 changes: 2 additions & 2 deletions qoqo_qasm/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "qoqo_qasm"
version = "0.12.0"
dependencies = ['qoqo>=1.14', 'qoqo_calculator_pyo3>=1.2']
version = "0.12.1"
dependencies = ['qoqo>=1.15', 'qoqo_calculator_pyo3>=1.2']
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 = [
{ name = "HQS Quantum Simulations GmbH", email = "info@quantumsimulations.de" },
Expand Down
Loading

0 comments on commit b881867

Please sign in to comment.