Skip to content

Commit 125bd72

Browse files
authored
Bump ADD-Lib to version 4.0 (#94)
* bump add-lib version * disable addlib documentation for now * switch to stable release
1 parent 4750376 commit 125bd72

File tree

5 files changed

+7
-13
lines changed

5 files changed

+7
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
strategy:
4747
matrix:
4848
jdk: [ 11, 17, 21 ]
49-
os: [ ubuntu-latest, windows-latest, macos-13 ]
49+
os: [ ubuntu-latest, windows-latest, macos-13, macos-latest ]
5050
runs-on: ${{ matrix.os }}
5151
steps:
5252
- name: Checkout

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
[Full changelog](https://github.com/LearnLib/automatalib/compare/automatalib-0.12.1...HEAD)
88

9+
### Added
10+
11+
* `automata-modelchecking-m3c` now supports ARM-based macOS systems.
12+
* `automata-modelchecking-m3c` can now be included in jlink images.
13+
914
### Changed
1015

1116
* AutomataLib now requires Java 11 at runtime.

distribution/src/it/jlink/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@ limitations under the License.
3939
<groupId>net.automatalib</groupId>
4040
<artifactId>automata-brics</artifactId>
4141
</exclusion>
42-
<exclusion>
43-
<groupId>net.automatalib</groupId>
44-
<artifactId>automata-modelchecking-m3c</artifactId>
45-
</exclusion>
4642
<exclusion>
4743
<groupId>net.automatalib</groupId>
4844
<artifactId>automata-jung-visualizer</artifactId>

modelchecking/m3c/src/test/java/net/automatalib/modelchecker/m3c/solver/SolverHistoryADDTest.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
import net.automatalib.modelchecker.m3c.transformer.ADDTransformer;
2828
import net.automatalib.modelchecker.m3c.transformer.ADDTransformerSerializer;
2929
import org.testng.Assert;
30-
import org.testng.SkipException;
3130

3231
public class SolverHistoryADDTest extends AbstractSolverHistoryTest<ADDTransformer<String, String>> {
3332

@@ -50,12 +49,6 @@ public AbstractDDSolver<ADDTransformer<String, String>, String, String> getSolve
5049
return new ADDSolver<>(cfmps);
5150
}
5251

53-
@Override
54-
public void testSolverHistory() {
55-
// TODO this test may fail due to a bug in ADDLib. Remove this method once we bump the dependency
56-
throw new SkipException("");
57-
}
58-
5952
@Override
6053
public <N> void testInitialPropertyTransformers(SolverData<N, ADDTransformer<String, String>, String, String> data,
6154
N s1,

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ limitations under the License.
222222
<tidy-pom.version>1.3.0</tidy-pom.version>
223223

224224
<!-- dependency versions -->
225-
<addlib.version>3.1.0</addlib.version>
225+
<addlib.version>4.0.0</addlib.version>
226226
<assertj.version>3.17.1</assertj.version>
227227
<brics-automaton.version>1.12-4</brics-automaton.version>
228228
<build-tools.version>0.1.1</build-tools.version>

0 commit comments

Comments
 (0)