Skip to content

Commit f00edee

Browse files
committed
bump version to 1.7.0
1 parent 44c3edb commit f00edee

File tree

13 files changed

+15
-15
lines changed

13 files changed

+15
-15
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Make sure you have Java 8 installed on your system.
1919
We advise to use a modern web browser like Google Chrome, Mozilla Firefox or Microsoft Edge with JavaScript enabled.
2020

2121
1. [Download](https://github.com/LearnLib/alex/releases/latest) the latest version.
22-
2. Open a terminal and start ALEX via `java -jar alex-1.7.0-SNAPSHOT.war [--server.port=XXXX]`.
22+
2. Open a terminal and start ALEX via `java -jar alex-1.7.0.war [--server.port=XXXX]`.
2323
3. Wait until the command line prints something like `de.learnlib.alex.App - Started App in XX.XXX seconds`.
2424
3. Open *http://localhost:8000* in a web browser.
2525

@@ -49,7 +49,7 @@ cd alex
4949
mvn install package [-DskipTests]
5050
```
5151

52-
The bundle can then be found at `build/target/alex-build-1.7.0-SNAPSHOT.war`.
52+
The bundle can then be found at `build/target/alex-build-1.7.0.war`.
5353

5454
## Connecting to a database
5555

@@ -71,7 +71,7 @@ spring.jpa.hibernate.ddl-auto=update
7171

7272
Then, start ALEX like this:
7373

74-
`java -jar alex-buid-1.7.0-SNAPSHOT.war "--spring.config.location=/path/to/your/application.properties"`
74+
`java -jar alex-buid-1.7.0.war "--spring.config.location=/path/to/your/application.properties"`
7575

7676

7777
## Using LTSMin

backend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>de.learnlib.alex</groupId>
2525
<artifactId>alex-parent</artifactId>
26-
<version>1.7.0-SNAPSHOT</version>
26+
<version>1.7.0</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

backend/src/main/resources/application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ server.port=8000
1616
# ALEX
1717
# Path to user files
1818
alex.filesRootDir=./target/files
19-
alex.version=1.7.0-SNAPSHOT
19+
alex.version=1.7.0
2020

2121
# Paths to web driver executables, will be saved in the database on first start
2222
chromeDriver=

build/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<artifactId>alex-parent</artifactId>
2525
<groupId>de.learnlib.alex</groupId>
26-
<version>1.7.0-SNAPSHOT</version>
26+
<version>1.7.0</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

documentation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>alex-parent</artifactId>
77
<groupId>de.learnlib.alex</groupId>
8-
<version>1.7.0-SNAPSHOT</version>
8+
<version>1.7.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

documentation/src/main/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": "1.7.0-SNAPSHOT",
3+
"version": "1.7.0",
44
"description": "Documentation for ALEX.",
55
"licence": {
66
"type": "Apache-2.0",

frontend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<artifactId>alex-parent</artifactId>
2525
<groupId>de.learnlib.alex</groupId>
26-
<version>1.7.0-SNAPSHOT</version>
26+
<version>1.7.0</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

frontend/src/main/javascript/environments.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/** The version of ALEX. */
18-
export const version = '1.7.0-SNAPSHOT';
18+
export const version = '1.7.0';
1919

2020
/** API URL */
2121
export const apiUrl = process.env.API_URL;

frontend/src/main/javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "alex",
3-
"version": "1.7.0-SNAPSHOT",
3+
"version": "1.7.0",
44
"description": "A web application for inferring Mealy machines of web applications and RESTful web services via active automata learning.",
55
"repository": {
66
"type": "git",

plugins/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<artifactId>alex-parent</artifactId>
2525
<groupId>de.learnlib.alex</groupId>
26-
<version>1.7.0-SNAPSHOT</version>
26+
<version>1.7.0</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

0 commit comments

Comments
 (0)