Skip to content

Commit f23f68b

Browse files
committed
Merge branch 'element-picker-fix'
2 parents 2a3369c + 4bccde2 commit f23f68b

File tree

12 files changed

+215
-89
lines changed

12 files changed

+215
-89
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.6.1
2+
3+
## Fixes
4+
5+
* Fix issues with HTML Element Picker
6+
17
# ALEX 1.6.0
28

39
## Breaking Changes

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.war [--server.port=XXXX]`.
21+
2. Open a terminal and start ALEX via `java -jar alex-1.6.1.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.war`.
51+
The bundle can then be found at `build/target/alex-build-1.6.1.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.war "--spring.config.location=/path/to/your/application.properties"`
73+
`java -jar alex-1.6.1.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</version>
26+
<version>1.6.1</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</version>
26+
<version>1.6.1</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</version>
27+
<version>1.6.1</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';
21+
export const version = '1.6.1';
2222

2323
/**
2424
* API URL

0 commit comments

Comments
 (0)