Skip to content

Commit 4c48348

Browse files
author
Alexander Bainczyk
committed
bump version to 3.0.0
1 parent 2ad4c97 commit 4c48348

File tree

14 files changed

+18
-18
lines changed

14 files changed

+18
-18
lines changed

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN tar -xzf ltsmin-v3.0.2-linux.tgz
1515
RUN mv v3.0.2 ltsmin
1616

1717
FROM docker.io/library/openjdk:17-slim
18-
COPY --from=builder-backend /backend/target/ALEX-3.0.0-SNAPSHOT-exec.jar /usr/share/java/alex/alex.jar
18+
COPY --from=builder-backend /backend/target/ALEX-3.0.0-exec.jar /usr/share/java/alex/alex.jar
1919
COPY --from=builder-ltsmin /ltsmin/ltsmin /opt/ltsmin
2020
WORKDIR /var/lib/alex
2121

backend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<packaging>jar</packaging>
7878

7979
<name>Automata Learning Experience (ALEX)</name>
80-
<version>3.0.0-SNAPSHOT</version>
80+
<version>3.0.0</version>
8181
<groupId>de.learnlib.alex</groupId>
8282

8383
<description>

backend/src/main/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ server:
3232

3333
alex:
3434
filesRootDir: "./target/postgresql/files"
35-
version: "3.0.0-SNAPSHOT"
35+
version: "3.0.0"
3636
admin:
3737
email: "admin@alex.example"
3838
password: "admin"

backend/src/test/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ server:
2323

2424
alex:
2525
filesRootDir: "./target/test-files"
26-
version: "3.0.0-SNAPSHOT"
26+
version: "3.0.0"
2727
admin:
2828
email: "admin@alex.example"
2929
password: "admin"

cli/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cli",
3-
"version": "3.0.0-SNAPSHOT",
3+
"version": "3.0.0",
44
"description": "A command line interface for ALEX",
55
"main": "index.ts",
66
"repository": {

cli/src/env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
* limitations under the License.
1515
*/
1616

17-
export const VERSION = '3.0.0-SNAPSHOT';
17+
export const VERSION = '3.0.0';

docs/contents/dev-docs/dependency/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You can use the `backend` module of ALEX as a dependency in other Maven projects
2525
<dependency>
2626
<groupId>de.learnlib.alex</groupId>
2727
<artifactId>alex-backend</artifactId>
28-
<version>3.0.0-SNAPSHOT</version>
28+
<version>3.0.0</version>
2929
</dependency>
3030
</dependencies>
3131
```
@@ -39,7 +39,7 @@ You can use the `backend` module of ALEX as a dependency in other Maven projects
3939
<dependency>
4040
<groupId>de.learnlib.alex</groupId>
4141
<artifactId>alex-backend</artifactId>
42-
<version>3.0.0-SNAPSHOT</version>
42+
<version>3.0.0</version>
4343

4444
<!-- exclude dependencies from Spring-Boot if you are using ALEX within another Spring-Boot app -->
4545
<exclusions>

docs/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "alex-docs",
3-
"version": "3.0.0-SNAPSHOT",
3+
"version": "3.0.0",
44
"description": "Documentation for ALEX.",
55
"licence": {
66
"type": "Apache-2.0",

0 commit comments

Comments
 (0)