Skip to content

Commit 0a50f2e

Browse files
committed
bump version to 1.7.1
1 parent 412cf45 commit 0a50f2e

File tree

18 files changed

+31
-25
lines changed

18 files changed

+31
-25
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# ALEX 1.7.1
2+
3+
## Fixes
4+
5+
* Fix model not displayed in testing view
6+
17
# ALEX 1.7.0
28

39
## Breaking Changes

README.md

Lines changed: 4 additions & 4 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.war [--server.port=XXXX]`.
22+
2. Open a terminal and start ALEX via `java -jar alex-1.7.1.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.war`.
52+
The bundle can then be found at `build/target/alex-build-1.7.1.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.war "--spring.config.location=/path/to/your/application.properties"`
74+
`java -jar alex-buid-1.7.1.war "--spring.config.location=/path/to/your/application.properties"`
7575

7676

7777
## Using LTSMin
@@ -81,7 +81,7 @@ If you want to use its capabilities, download version **3.0.2** and append the `
8181
The value for the argument should be the *bin* directory where the compiled binaries of LTSMin are located.
8282
Example:
8383

84-
`java -jar alex-1.7.0.war --ltsmin.path="/path/to/ltsmin/bin"`
84+
`java -jar alex-1.7.1.war --ltsmin.path="/path/to/ltsmin/bin"`
8585

8686

8787

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</version>
26+
<version>1.7.1</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
19+
alex.version=1.7.1
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</version>
26+
<version>1.7.1</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</version>
8+
<version>1.7.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

documentation/src/main/docs/.vuepress/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
base: '/alex/book/1.7.0/',
3-
title: 'ALEX Docs (v1.7.0)',
3+
title: 'ALEX Docs (v1.7.1)',
44
description: 'User documentation for ALEX',
55
dest: './.vuepress/dist',
66
markdown: {

documentation/src/main/docs/contents/getting-started/configuration/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ The following arguments can be passed to the bundled version of ALEX:
99

1010
| Argument | Description |
1111
|-------------------|-----------------------------------------------------------------------------------------------|
12-
| `server.port` | The port under which ALEX is available <br> `java -jar alex-1.7.0.war --server.port=8000` |
13-
| `alex.dbpath` | The path where the HSQLDB is stored. <br> `java -jar alex-1.7.0.war --alex.dbpath=mem:testdb` |
12+
| `server.port` | The port under which ALEX is available <br> `java -jar alex-1.7.1.war --server.port=8000` |
13+
| `alex.dbpath` | The path where the HSQLDB is stored. <br> `java -jar alex-1.7.1.war --alex.dbpath=mem:testdb` |
1414
| `chromeDriver` | The absolute path to the Chrome driver executable on your system |
1515
| `edgeDriver` | The absolute path to the Edge driver executable on your system |
1616
| `firefoxDriver` | The absolute path to the Gecko driver executable on your system |
@@ -37,7 +37,7 @@ spring.jpa.hibernate.ddl-auto=update
3737
Here, we assume that a MySQL server is running under port *3306* and a database called *alex* has been created.
3838
Then, start ALEX and include the *application.properties* file as command line argument:
3939

40-
`java -jar alex-1.7.0.war "--spring.config.location=/path/to/your/application.properties"`
40+
`java -jar alex-1.7.1.war "--spring.config.location=/path/to/your/application.properties"`
4141

4242
<div class="alert alert-info">
4343
Note that there is no automated migration to a MySQL database if the file-based HSQLDB has been used before.

documentation/src/main/docs/contents/getting-started/installation/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Further, a **modern browser** like Google Chrome, Mozilla Firefox or Microsoft E
77
## Bundled version
88

99
1. [Download][download] the latest version.
10-
2. Open a terminal and start ALEX via `java -jar alex-1.7.0.war`.
10+
2. Open a terminal and start ALEX via `java -jar alex-1.7.1.war`.
1111
3. Wait until the command line prints something like `Started App in XX.XXX seconds`.
1212
3. Open *http://localhost:8000* in a web browser.
1313

@@ -38,21 +38,21 @@ cd alex
3838
mvn install package [-DskipTests]
3939
```
4040

41-
The bundle can then be found at `build/target/alex-build-1.7.0.war`.
41+
The bundle can then be found at `build/target/alex-build-1.7.1.war`.
4242
Run it using the instructions for running the bundled version from above.
4343

4444

4545
## Docker
4646

4747
We also offer a Docker image that contains a Linux environment with the following software:
4848

49-
* ALEX v1.7.0
49+
* ALEX v1.7.1
5050
* Chrome v73
5151
* Firefox v66
5252

5353
The image can be found [here](docker).
5454
The Docker container exposes the **port 8000** under which ALEX is available after the start.
5555
Note that currently, only the HtmlUnit and the Firefox browser can be used in the Docker container.
5656

57-
[download]: https://github.com/LearnLib/alex/releases/download/v1.7.0/alex-1.7.0.war
57+
[download]: https://github.com/LearnLib/alex/releases/download/v1.7.1/alex-1.7.1.war
5858
[docker]: https://github.com/scce/docker-images/tree/master/alex-server

documentation/src/main/docs/contents/user-manual/model-checking/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The library has to be downloaded from the homepage and extracted to a place of y
1111
Inside the folder, there is a *bin* directory that contains all the binaries.
1212
When starting ALEX, specify the path to the bin directory as an additional argument:
1313

14-
`java -jar alex-1.7.0.war --ltsmin.path=/path/to/ltsmin/bin`
14+
`java -jar alex-1.7.1.war --ltsmin.path=/path/to/ltsmin/bin`
1515

1616

1717
## Define LTL formulas

0 commit comments

Comments
 (0)