Skip to content

Commit

Permalink
bump version to 2.5.0 (#824)
Browse files Browse the repository at this point in the history
  • Loading branch information
ecpeterson authored and karalekas committed Mar 6, 2019
1 parent f77213c commit 4ed19ff
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
25 changes: 24 additions & 1 deletion docs/source/changes.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,32 @@
Changelog
=========

v2.5 (Development)
v2.5 (March 6, 2019)
------------------

Improvements and Changes:

- PyQuil's Gate objects now expose ``.controlled(q)`` and ``.dagger()``
modifiers, which turn a gate respectively into its controlled variant,
conditional on the qubit ``q``, or into its inverse.

- The operator estimation suite's ``measure_observables`` method now exposes a
``readout_symmetrize`` argument, which helps mitigate a machine's fidelity
asymmetry between recognizing a qubit in the ground state versus the excited
state.

- The ``MEASURE`` instruction in pyQuil now has a *mandatory* second argument.
Previously, the second argument could be omitted to induce "measurement for
effect", without storing the readout result to a classical register, but users
found this to be a common source of accidental error and a generally rude
surprise. To ensure the user really intends to measure only for effect, we
now require that they supply an explicit ``None`` as the second argument.

Bugfixes:

- Some stale tests have been brought into the modern era.



v2.4 (February 14, 2019)
------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyquil/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.5.0.dev0"
__version__ = "2.5.0"

from pyquil.quil import Program
from pyquil.api import list_quantum_computers, get_qc

0 comments on commit 4ed19ff

Please sign in to comment.