Skip to content

Commit

Permalink
Version bump 0.0.8 (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
IceKhan13 authored May 9, 2023
1 parent 346a034 commit b857a9f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Constants
# =========

version=0.0.7
version=0.0.8
repository=qiskit
arch=$(shell uname -p)

Expand Down
2 changes: 1 addition & 1 deletion client/quantum_serverless/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.7
0.0.8
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
services:
jupyter:
container_name: qs-jupyter
image: qiskit/quantum-serverless-notebook:${VERSION:-0.0.7}-py39
image: qiskit/quantum-serverless-notebook:${VERSION:-0.0.8}-py39
profiles: ["jupyter", "full"]
ports:
- 8888:8888
Expand All @@ -12,7 +12,7 @@ services:
- safe-tier
ray-head:
container_name: ray-head
image: qiskit/quantum-serverless-ray-node:${VERSION:-0.0.7}-py39
image: qiskit/quantum-serverless-ray-node:${VERSION:-0.0.8}-py39
entrypoint: [
"ray", "start", "--head", "--port=6379",
"--dashboard-host=0.0.0.0", "--block"
Expand Down Expand Up @@ -61,7 +61,7 @@ services:
always
gateway:
container_name: gateway
image: docker.io/qiskit/quantum-serverless-gateway:${VERSION:-0.0.7}
image: docker.io/qiskit/quantum-serverless-gateway:${VERSION:-0.0.8}
command: gunicorn main.wsgi:application --bind 0.0.0.0:8000 --workers=4
ports:
- 8000:8000
Expand All @@ -82,7 +82,7 @@ services:
- keycloak
repository-server:
container_name: repository-server
image: docker.io/qiskit/quantum-repository-server:${VERSION:-0.0.7}
image: docker.io/qiskit/quantum-repository-server:${VERSION:-0.0.8}
command: gunicorn main.wsgi:application --bind 0.0.0.0:8060 --workers=4
ports:
- 8060:8060
Expand Down
4 changes: 2 additions & 2 deletions docs/deployment/local.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ Available version can be found in `GitHub releases`_ page.

.. _GitHub releases: https://github.com/Qiskit-Extensions/quantum-serverless/releases

For example, if you want to install version `0.0.7` with all services,
For example, if you want to install version `0.0.8` with all services,
the command would be:

.. code-block::
$ VERSION=0.0.7 docker-compose --profile full up
$ VERSION=0.0.8 docker-compose --profile full up
4 changes: 2 additions & 2 deletions docs/quickstart/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ Step 0: install package
.. code-block::
:caption: pip install
pip install quantum_serverless==0.0.7
pip install quantum_serverless==0.0.8
Step 1: run infrastructure

.. code-block::
:caption: run docker compose from a root of the project
VERSION=0.0.7 docker-compose --profile full up
VERSION=0.0.8 docker-compose --profile full up
Step 2: write program
Expand Down
8 changes: 4 additions & 4 deletions infrastructure/helm/quantumserverless/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ gateway:

image:
pullPolicy: IfNotPresent
tag: "0.0.7"
tag: "0.0.8"
application:
siteHost: "http://127.0.0.1:8000"
rayHost: "http://serverless-cluster-kuberay-head-svc:8265"
Expand Down Expand Up @@ -74,7 +74,7 @@ jupyter:

image:
repository: "qiskit/quantum-serverless-notebook"
tag: "0.0.7-py39"
tag: "0.0.8-py39"
pullPolicy: IfNotPresent

imagePullSecrets: []
Expand Down Expand Up @@ -112,7 +112,7 @@ ray-cluster:

image:
repository: "qiskit/quantum-serverless-ray-node"
tag: "0.0.7-py39"
tag: "0.0.8-py39"
pullPolicy: IfNotPresent

head:
Expand Down Expand Up @@ -318,7 +318,7 @@ repository:

repository: "qiskit/quantum-repository-server"
pullPolicy: IfNotPresent
tag: "0.0.7"
tag: "0.0.8"

# ===================
# Prometheus
Expand Down

0 comments on commit b857a9f

Please sign in to comment.