Skip to content

Commit bc75326

Browse files
committed
bump version to 1.6.0
1 parent a80403f commit bc75326

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

README.md

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

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

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

51-
The bundle can then be found at `build/target/alex-build-1.6.0-SNAPSHOT.war`.
51+
The bundle can then be found at `build/target/alex-build-1.6.0.war`.
5252

5353
## Connecting to a database
5454

@@ -70,7 +70,7 @@ spring.jpa.hibernate.ddl-auto=update
7070

7171
Then, start ALEX like this:
7272

73-
`java -jar alex-1.6.0-SNAPSHOT.war "--spring.config.location=/path/to/your/application.properties"`
73+
`java -jar alex-1.6.0.war "--spring.config.location=/path/to/your/application.properties"`
7474

7575
## Further reading
7676

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.6.0-SNAPSHOT</version>
26+
<version>1.6.0</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

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.6.0-SNAPSHOT</version>
26+
<version>1.6.0</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

frontend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<artifactId>alex-parent</artifactId>
2626
<groupId>de.learnlib.alex</groupId>
27-
<version>1.6.0-SNAPSHOT</version>
27+
<version>1.6.0</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030

frontend/src/main/javascript/environments.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* The version of ALEX.
1919
* @type {string}
2020
*/
21-
export const version = '1.6.0-SNAPSHOT';
21+
export const version = '1.6.0';
2222

2323
/**
2424
* API URL

frontend/src/main/javascript/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.6.0-SNAPSHOT",
3+
"version": "1.6.0",
44
"description": "A web application for interring Mealy machines of web applications and RESTful web services via active automata learning.",
55
"repository": {
66
"type": "git",

pom.xml

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

2323
<groupId>de.learnlib.alex</groupId>
2424
<artifactId>alex-parent</artifactId>
25-
<version>1.6.0-SNAPSHOT</version>
25+
<version>1.6.0</version>
2626
<packaging>pom</packaging>
2727

2828
<name>Automata Learning Experience (ALEX)</name>

0 commit comments

Comments
 (0)