Skip to content

Commit

Permalink
EchoCrossResonance Support (#118)
Browse files Browse the repository at this point in the history
* versioning

* changelog fix

* sol

* test

* clippy

* deny

* fmt

* better ver

* DEP
  • Loading branch information
mlodi-hqs authored Dec 3, 2024
1 parent 5633098 commit 7344647
Show file tree
Hide file tree
Showing 10 changed files with 103 additions and 96 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

### 0.13.0

* Added support for `EchoCrossResonance` gate.

### 0.12.4

* Fixed atomicity rule for expressions
Expand Down
54 changes: 27 additions & 27 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ allow = [
"Apache-2.0 WITH LLVM-exception",
"BSD-3-Clause",
"BSD-2-Clause",
"Unicode-DFS-2016"
"Unicode-DFS-2016",
"Unicode-3.0"
]
# List of explicitly disallowed licenses
# See https://spdx.org/licenses/ for list of possible licenses
Expand Down
4 changes: 2 additions & 2 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.4"
version = "0.13.0"
authors = ["HQS Quantum Simulations <info@quantumsimulations.de>"]
license = "Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -30,7 +30,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
qoqo = { version = "~1.15", default-features = false }
roqoqo = { version = "~1.15", features = ["serialize"] }
roqoqo-qasm = { version = "~0.12", path = "../roqoqo-qasm" }
roqoqo-qasm = { version = "~0.13", path = "../roqoqo-qasm" }

[dependencies.pyo3]
version = "0.21"
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.4"
version = "0.13.0"
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 = [
Expand Down
Loading

0 comments on commit 7344647

Please sign in to comment.