Skip to content

Commit

Permalink
Bump cirq version to 0.16.0 (#5640)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelBroughton committed Jun 29, 2022
1 parent 9867093 commit 8d4e7b4
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion cirq-aqt/cirq_aqt/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

"""Define version number here, read it from setup.py automatically"""

__version__ = "0.15.0.dev"
__version__ = "0.16.0.dev"
2 changes: 1 addition & 1 deletion cirq-aqt/cirq_aqt/_version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


def test_version():
assert cirq_aqt.__version__ == "0.15.0.dev"
assert cirq_aqt.__version__ == "0.16.0.dev"
2 changes: 1 addition & 1 deletion cirq-core/cirq/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
'of cirq (e.g. "python -m pip install cirq==0.5.*")'
)

__version__ = "0.15.0.dev"
__version__ = "0.16.0.dev"
2 changes: 1 addition & 1 deletion cirq-core/cirq/_version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


def test_version():
assert cirq.__version__ == "0.15.0.dev"
assert cirq.__version__ == "0.16.0.dev"
2 changes: 1 addition & 1 deletion cirq-google/cirq_google/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
'of cirq (e.g. "python -m pip install cirq==0.5.*")'
)

__version__ = "0.15.0.dev"
__version__ = "0.16.0.dev"
2 changes: 1 addition & 1 deletion cirq-google/cirq_google/_version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


def test_version():
assert cirq_google.__version__ == "0.15.0.dev"
assert cirq_google.__version__ == "0.16.0.dev"
2 changes: 1 addition & 1 deletion cirq-ionq/cirq_ionq/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

"""Define version number here, read it from setup.py automatically"""

__version__ = "0.15.0.dev"
__version__ = "0.16.0.dev"
2 changes: 1 addition & 1 deletion cirq-ionq/cirq_ionq/_version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


def test_version():
assert cirq_ionq.__version__ == "0.15.0.dev"
assert cirq_ionq.__version__ == "0.16.0.dev"
2 changes: 1 addition & 1 deletion cirq-pasqal/cirq_pasqal/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

"""Define version number here, read it from setup.py automatically"""

__version__ = "0.15.0.dev"
__version__ = "0.16.0.dev"
2 changes: 1 addition & 1 deletion cirq-pasqal/cirq_pasqal/_version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


def test_version():
assert cirq_pasqal.__version__ == "0.15.0.dev"
assert cirq_pasqal.__version__ == "0.16.0.dev"
2 changes: 1 addition & 1 deletion cirq-rigetti/cirq_rigetti/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

"""Define version number here, read it from setup.py automatically"""

__version__ = "0.15.0.dev"
__version__ = "0.16.0.dev"
2 changes: 1 addition & 1 deletion cirq-rigetti/cirq_rigetti/_version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


def test_version():
assert cirq_rigetti.__version__ == "0.15.0.dev"
assert cirq_rigetti.__version__ == "0.16.0.dev"
2 changes: 1 addition & 1 deletion cirq-web/cirq_web/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.15.0.dev"
__version__ = "0.16.0.dev"
2 changes: 1 addition & 1 deletion cirq-web/cirq_web/_version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@


def test_version():
assert cirq_web.__version__ == "0.15.0.dev"
assert cirq_web.__version__ == "0.16.0.dev"
2 changes: 1 addition & 1 deletion dev_tools/packaging/verify-published-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ for PYTHON_VERSION in python3; do

# Check that code runs without dev deps.
echo Checking that code executes
"${tmp_dir}/${PYTHON_VERSION}/bin/python" -c "import cirq_google; print(cirq_google.Foxtail)"
"${tmp_dir}/${PYTHON_VERSION}/bin/python" -c "import cirq_google; print(cirq_google.Sycamore)"
"${tmp_dir}/${PYTHON_VERSION}/bin/python" -c "import cirq; print(cirq.Circuit(cirq.CZ(*cirq.LineQubit.range(2))))"

# Install pytest + dev deps.
Expand Down

0 comments on commit 8d4e7b4

Please sign in to comment.