Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump cirq version to 0.16.0 #5640

Merged
merged 3 commits into from
Jun 29, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion cirq-aqt/cirq_aqt/_version.py
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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