Skip to content

Commit d179488

Browse files
committed
Bump version to v0.9.1
1 parent 973ee1c commit d179488

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
@@ -4,4 +4,4 @@ include:
44

55
variables:
66
APP_NAME: "xtreme1"
7-
APP_VERSION: "0.9"
7+
APP_VERSION: "0.9.1"

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.9-green)
4+
![](https://img.shields.io/badge/Release-v0.9.1-green)
55
![](https://img.shields.io/badge/License-Apache%202.0-blueviolet)
66
[![Twitter](https://img.shields.io/badge/Follow-Twitter-blue)](https://twitter.com/Xtreme1io)
77
[![Online](https://img.shields.io/badge/Xtreme1_Online-App-yellow)](https://app.basic.ai/#/login)
@@ -64,8 +64,8 @@ Image Data Curation (Visualizing & Debug) - [MobileNetV3](https://github.com/xi
6464
Download the latest release package and unzip it.
6565

6666
```bash
67-
wget https://github.com/xtreme1-io/xtreme1/releases/download/v0.9/xtreme1-v0.9.zip
68-
unzip -d xtreme1-v0.9 xtreme1-v0.9.zip
67+
wget https://github.com/xtreme1-io/xtreme1/releases/download/v0.9.1/xtreme1-v0.9.1.zip
68+
unzip -d xtreme1-v0.9.1 xtreme1-v0.9.1.zip
6969
```
7070

7171
## 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.9-SNAPSHOT.jar ./app.jar
12+
COPY --from=build /build/target/xtreme1-backend-0.9.1-SNAPSHOT.jar ./app.jar
1313
RUN mkdir -p config
1414
RUN wget 'https://github.com/xtreme1-io/asset/raw/main/datasets/xtreme1-lidar-fusion-trial.zip' -O xtreme1-lidar-fusion-trial.zip
1515
RUN wget 'https://github.com/xtreme1-io/asset/raw/main/datasets/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.9-SNAPSHOT.jar
95+
java -Dspring.profiles.active=local -jar target/xtreme1-backend-0.9.1-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</artifactId>
16-
<version>0.9-SNAPSHOT</version>
16+
<version>0.9.1-SNAPSHOT</version>
1717

1818
<properties>
1919
<java.version>11</java.version>

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.9
68+
image: basicai/xtreme1-backend:v0.9.1
6969
pull_policy: always
7070
# Uncomment this line and comment previous line to build image locally, not pull from Docker Hub.
7171
# build: ./backend
@@ -96,7 +96,7 @@ services:
9696
condition: service_healthy
9797
frontend:
9898
# By default, Compose will pull image from Docker Hub when no local image found.
99-
image: basicai/xtreme1-frontend:v0.9
99+
image: basicai/xtreme1-frontend:v0.9.1
100100
pull_policy: always
101101
# Uncomment this line and comment previous line to build image locally, not pull from Docker Hub.
102102
# build: ./frontend

0 commit comments

Comments
 (0)