Skip to content

Commit c8afa1c

Browse files
committed
Bump version to v0.7.2
Signed-off-by: Jagger Wang <jaggerwang@gmail.com>
1 parent da286e4 commit c8afa1c

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.ops/.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ stages:
55

66
variables:
77
APP_NAME: "xtreme1"
8-
APP_VERSION: "0.7.1"
8+
APP_VERSION: "0.7.2"
99

1010
FRONTEND_PACKAGE_DIR: "dist"
1111
BACKEND_PACKAGE_NAME: "${APP_NAME}-backend-${APP_VERSION}-SNAPSHOT.jar"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div align="center">
22
<img width="386" alt="Xtreme1 logo" src="https://user-images.githubusercontent.com/84139543/190300943-98da7d5c-bd67-4074-a94f-b7405d29fb90.png">
33

4-
![](https://img.shields.io/badge/Release-v0.7.1-green)
4+
![](https://img.shields.io/badge/Release-v0.7.2-green)
55
![](https://img.shields.io/badge/License-Apache%202.0-blueviolet)
66
[![Slack](https://img.shields.io/badge/Join-Slack-orange.svg?logo=slack)](https://join.slack.com/t/xtreme1group/shared_invite/zt-1jhk36uzr-NpdpYXeQAEHN6rYJy5_6pg)
77
[![Twitter](https://img.shields.io/badge/Follow-Twitter-blue)](https://twitter.com/Xtreme1io)
@@ -59,8 +59,8 @@ Image Data Curation (Visualizing & Debug) - [MobileNetV3](https://github.com/xi
5959
Download the latest release package and unzip it.
6060

6161
```bash
62-
wget https://github.com/xtreme1-io/xtreme1/releases/download/v0.7.1/xtreme1-v0.7.1.zip
63-
unzip -d xtreme1-v0.7.1 xtreme1-v0.7.1.zip
62+
wget https://github.com/xtreme1-io/xtreme1/releases/download/v0.7.2/xtreme1-v0.7.2.zip
63+
unzip -d xtreme1-v0.7.2 xtreme1-v0.7.2.zip
6464
```
6565

6666
## Start all services

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt update && \
99
apt install -y iputils-ping curl wget netcat python3 python3-pip git
1010
RUN pip3 install --upgrade --force-reinstall git+https://github.com/xtreme1-io/xtreme1-sdk.git@d0cf4cc
1111
WORKDIR /app
12-
COPY --from=build /build/target/xtreme1-backend-0.7.1-SNAPSHOT.jar ./app.jar
12+
COPY --from=build /build/target/xtreme1-backend-0.7.2-SNAPSHOT.jar ./app.jar
1313
RUN mkdir -p config
1414
RUN wget 'https://basicai-asset.s3.us-west-2.amazonaws.com/xtreme1/xtreme1-lidar-fusion-trial.zip' -O xtreme1-lidar-fusion-trial.zip
1515
RUN wget 'https://basicai-asset.s3.us-west-2.amazonaws.com/xtreme1/xtreme1-image-trial.zip' -O xtreme1-image-trial.zip

backend/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ cd backend
9292
mvn package
9393

9494
# Using local configuration to start application.
95-
java -Dspring.profiles.active=local -jar target/xtreme1-backend-0.7.1-SNAPSHOT.jar
95+
java -Dspring.profiles.active=local -jar target/xtreme1-backend-0.7.2-SNAPSHOT.jar
9696
```
9797

9898
Now you can access the backend service at `http://localhost:8080/`.

backend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<groupId>ai.basic</groupId>
1515
<artifactId>xtreme1-backend</artifactId>
16-
<version>0.7.1-SNAPSHOT</version>
16+
<version>0.7.2-SNAPSHOT</version>
1717
<name>Xtreme1 Backend</name>
1818
<description></description>
1919

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ services:
6565
retries: 10
6666
backend:
6767
# By default, Compose will pull image from Docker Hub when no local image found.
68-
image: basicai/xtreme1-backend:v0.7.1
68+
image: basicai/xtreme1-backend:v0.7.2
6969
# Uncomment this line and comment previous line to build image locally, not pull from Docker Hub.
7070
# build: ./backend
7171
ports:
@@ -95,7 +95,7 @@ services:
9595
condition: service_healthy
9696
frontend:
9797
# By default, Compose will pull image from Docker Hub when no local image found.
98-
image: basicai/xtreme1-frontend:v0.7.1
98+
image: basicai/xtreme1-frontend:v0.7.2
9999
# Uncomment this line and comment previous line to build image locally, not pull from Docker Hub.
100100
# build: ./frontend
101101
ports:

0 commit comments

Comments
 (0)