Skip to content

Commit

Permalink
0.35 release (#2255)
Browse files Browse the repository at this point in the history
* add release notes for 0.35

* try new intersphinx link for scipy

* wordsmithing

* update qiskit link for interphinx; remove qutip
  • Loading branch information
natestemen committed Apr 2, 2024
1 parent 246f2e6 commit 8ed510e
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 5 deletions.
43 changes: 42 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,47 @@
# Changelog

## Version 0.35.0 (under development)
## Version 0.35.0

In this milestone, we've continued our work to support Qibo by providing a new tutorial, adding related Qibo-conversion functionality to the API-doc, and added Qibo to our main list of supported frontends.
We've also added the capability to use rotated randomized benchmarking circuits as part of the calibrator.
These circuits provide expectation values ranging from 0 to 1 when measuring the probability that the output state is in the ground state.
Having circuits with a wide range of expectation values is an important benchmarking task, and make a great test for finding the correct error mitigation technique/parameters.
If you find any bugs/inconveniences in working with these updates make sure to open an issue so we are able to fix it ASAP!

This release also contains contributions from two new Mitiq contributors, and Unitary Fund team members Alessandro and Jordan!
Welcome both, and looking forward to many more contributions!
Well done making your first contribution so quickly 🏎️💨!

### Commits

- Exit early when circuit type is not supported (#2252) [@cosenal]
- adding rotated randomized benchmarking circuits to calibrator (#2248) [@farlab]
- add qibo + rearrange frontend order (#2249) [@purva-thakre]
- Fix examples link in README.md (#2242) [@jordandsullivan]
- add link to discussions as a way to contribute (#2234) [@natestemen]
- use python 3.11 for RTD (#2231) [@natestemen]
- fix pennylane tutorial (#2232) [@natestemen]
- Add qibo example to docs (#2220) [@francescsabater]
- replace `black`, `flake8`, and `isort` with `ruff` (#2222) [@natestemen]
- pin qibo version (#2221) [@natestemen]
- Add Qibo conversions to documentation (#2214) [@nathanshammah]
- Added warning filter to ignore warning (#2211) [@bdg221]
- remove redundant imports (#2206) [@natestemen]
- Indicate master is under development (#2205) [@natestemen]

#### 📦 Dependency updates

- Update pennylane-qiskit requirement from ~=0.34.0 to ~=0.34.1 (#2198) [@dependabot]
- Update qiskit-ibm-provider requirement from ~=0.8.0 to ~=0.10.0 (#2196) [@dependabot]
- Update pennylane requirement from ~=0.34.0 to ~=0.35.1 (#2227) [@dependabot]
- Update pennylane-qiskit requirement from ~=0.34.1 to ~=0.35.1 (#2225) [@dependabot]
- Bump stimcirq from 1.12.1 to 1.13.0 (#2236) [@dependabot]
- Bump stim from 1.12.1 to 1.13.0 (#2237) [@dependabot]

#### 🧑‍💻 Dev Dependency updates

- Bump all documentation dependencies (#2179) [@dependabot]
- Bump pytest-cov from 4.0.0 to 5.0.0 (#2240) [@dependabot]

## Version 0.34.0
Announcing support for [Qibo](https://qibo.science/), a newly integrated frontend in Mitiq! 📣
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.35.0dev
0.35.0
7 changes: 4 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,13 @@
intersphinx_mapping = {
"python": ("https://docs.python.org/3.9", None),
"numpy": ("https://numpy.org/doc/stable/", None),
"scipy": ("https://docs.scipy.org/doc/scipy/reference/", None),
"scipy": ("https://docs.scipy.org/doc/scipy/", None),
# Cirq is no longer using sphinx docs so interlinking is not possible.
# "cirq": ("https://quantumai.google/cirq", None),
"pyquil": ("https://pyquil-docs.rigetti.com/en/stable/", None),
"qiskit": ("https://qiskit.org/documentation/", None),
"qutip": ("https://qutip.org/docs/latest/", None),
"qiskit": ("https://docs.quantum.ibm.com/api/qiskit/", None),
# TODO: qutip docs moved and the objects.inv file not yet found
# "qutip": ("https://qutip.org/docs/latest/", None),
}

# Add any paths that contain templates here, relative to this directory.
Expand Down

0 comments on commit 8ed510e

Please sign in to comment.