|
1 | 1 | # Changelog
|
2 | 2 |
|
3 | 3 | ## Version 0.34.0
|
| 4 | +Announcing support for [Qibo](https://qibo.science/), a newly integrated frontend in Mitiq! 📣 |
| 5 | +Qibo is an "end-to-end open source platform for quantum simulation, self-hosted quantum hardware control, calibration and characterization". |
| 6 | + |
| 7 | +```py |
| 8 | +from qibo import Circuit |
| 9 | +from mitiq.conversions import convert_to_mitiq |
| 10 | + |
| 11 | +circuit = Circuit(2) |
| 12 | +circuit.add(gates.H(0)) |
| 13 | +circuit.add(gates.H(1)) |
| 14 | + |
| 15 | +print(circuit) |
| 16 | + |
| 17 | +def executor(circuit): |
| 18 | + return circuit.execute() |
| 19 | + |
| 20 | + |
| 21 | +mitigated = mitiq.zne.execute_with_zne(convert_to_mitiq(circuit), executor) |
| 22 | +``` |
| 23 | + |
| 24 | +Thank you to new contributor Francesc Sabater for excellent work integrating Qibo and Mitiq! |
| 25 | +Thanks also to new contibutor Sam Burdick for fixing our readme. |
| 26 | + |
| 27 | +This release also includes a refactoring of part of the Mitiq shadows module, `mitiq.shadows.classical_postprocessing`, for speed of execution and code readability. |
| 28 | + |
| 29 | +### 📓 Documentation |
| 30 | +We've continued to enhance our (legendary!) documentation with: |
| 31 | +1. Addition of a security policy document |
| 32 | +2. Faster execution of the learning-based PEC tutorial in CI |
| 33 | + |
| 34 | +### Commits |
| 35 | +- Add support for qibo circuits (#2102) [@francescsabater] |
| 36 | +- Reduce doc build time for learning representations (#2165) [@Misty-W] |
| 37 | +- Create SECURITY.md (#2162) [@nathanshammah] |
| 38 | +- Fix typo in README.md (#2173) [@smburdick] |
| 39 | +- Refactor classical postprocessing in shadows module (#2152) [@natestemen] |
| 40 | +- Fix broken link in `combine_rem_zne.md` (#2156) [@Misty-W] |
| 41 | + |
| 42 | +#### 📦 Dependency updates |
| 43 | +- Bump openfermion from 1.6.0 to 1.6.1 (#2182) [@dependabot] |
| 44 | +- Update amazon-braket-sdk requirement from ~=1.68.3 to ~=1.69.0 (#2177) [@dependabot] |
| 45 | +- Bump pyscf from 2.4.0 to 2.5.0 (#2176) [@dependabot] |
| 46 | +- Update amazon-braket-sdk requirement from ~=1.66.0 to ~=1.68.3 (#2175) [@dependabot] |
| 47 | +- Update qiskit-aer requirement from ~=0.13.1 to ~=0.13.2 (#2157) [@dependabot] |
| 48 | +- Bump pytest from 7.1.3 to 8.0.0 (#2167) [@dependabot] |
| 49 | +- Update amazon-braket-sdk requirement from ~=1.65.1 to ~=1.66.0 (#2155) [@dependabot] |
| 50 | +- Update pennylane-qiskit requirement from ~=0.33.1 to ~=0.34.0 (#2154) [@dependabot] |
| 51 | +- Update pennylane requirement from ~=0.33.1 to ~=0.34.0 (#2153) [@dependabot] |
| 52 | +- Update qiskit-ibm-provider requirement from ~=0.7.3 to ~=0.8.0 (#2151) [@dependabot] |
4 | 53 |
|
5 | 54 | ## Version 0.33.0
|
6 | 55 |
|
|
0 commit comments