Skip to content

Commit 914e587

Browse files
committed
release(2.3.4): feat added BFS/DFS first-match strategies --- added matchFirst() and matchAll() PureBigraphMatcher API and deprecated match() in the future --- more doc for BigraphModelChecker and ReactiveSystemListener --- license report generated
1 parent d819db5 commit 914e587

File tree

24 files changed

+492
-368
lines changed

24 files changed

+492
-368
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<img src="etc/assets/bigraph-framework-logo.png" style="zoom:67%;" />
22

3-
> Latest Version: **2.3.3**
3+
> Latest Version: **2.3.4**
44
55
[![HiRSE Code Promo Badge](https://img.shields.io/badge/Promo-8db427?style=plastic&label=HiRSE&labelColor=005aa0&link=https%3A%2F%2Fgo.fzj.de%2FCodePromo)](https://go.fzj.de/CodePromo)
66

@@ -184,36 +184,36 @@ composite.juxtapose(F).parallelProduct(H);
184184
<dependency>
185185
<groupId>org.bigraphs.framework</groupId>
186186
<artifactId>bigraph-core</artifactId>
187-
<version>2.3.3</version>
187+
<version>2.3.4</version>
188188
</dependency>
189189
<!-- the rewriting module -->
190190
<dependency>
191191
<groupId>org.bigraphs.framework</groupId>
192192
<artifactId>bigraph-simulation</artifactId>
193-
<version>2.3.3</version>
193+
<version>2.3.4</version>
194194
</dependency>
195195
<!-- the visualization module -->
196196
<dependency>
197197
<groupId>org.bigraphs.framework</groupId>
198198
<artifactId>bigraph-visualization</artifactId>
199-
<version>2.3.3</version>
199+
<version>2.3.4</version>
200200
</dependency>
201201
<!-- the converter module -->
202202
<dependency>
203203
<groupId>org.bigraphs.framework</groupId>
204204
<artifactId>bigraph-converter</artifactId>
205-
<version>2.3.3</version>
205+
<version>2.3.4</version>
206206
</dependency>
207207
</dependencies>
208208
```
209209

210210
### Gradle
211211

212212
```groovy
213-
compile "org.bigraphs.framework:bigraph-core:2.3.3"
214-
compile "org.bigraphs.framework:bigraph-simulation:2.3.3"
215-
compile "org.bigraphs.framework:bigraph-visualization:2.3.3"
216-
compile "org.bigraphs.framework:bigraph-converter:2.3.3"
213+
compile "org.bigraphs.framework:bigraph-core:2.3.4"
214+
compile "org.bigraphs.framework:bigraph-simulation:2.3.4"
215+
compile "org.bigraphs.framework:bigraph-visualization:2.3.4"
216+
compile "org.bigraphs.framework:bigraph-converter:2.3.4"
217217
```
218218

219219
### Logging

converter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.bigraphs.framework</groupId>
77
<artifactId>framework-parent</artifactId>
8-
<version>2.3.3</version>
8+
<version>2.3.4</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.bigraphs.framework</groupId>
66
<artifactId>framework-parent</artifactId>
7-
<version>2.3.3</version>
7+
<version>2.3.4</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>

documentation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.bigraphs.framework</groupId>
77
<artifactId>framework-parent</artifactId>
8-
<version>2.3.3</version>
8+
<version>2.3.4</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

documentation/v2-docusaurus/docs/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ import TabItem from '@theme/TabItem';
1212
<center>
1313
<p>
1414
This manual provides a complete guide to the Bigraph Framework. <br/>
15-
<i>Last Updated: 2025-11-16</i>
15+
<i>Last Updated: 2025-11-22</i>
1616
</p>
1717
</center>
1818

1919

20-
- **Stable**: <span class="badge badge-secondary" style={{backgroundColor: '#19c37d'}}>2.3.3</span>
21-
- Previous Stable Versions: `2.3.2`, `2.3.1`, `2.3.0`, `2.2.1`
20+
- **Stable**: <span class="badge badge-secondary" style={{backgroundColor: '#19c37d'}}>2.3.4</span>
21+
- Previous Stable Versions: `2.3.3`, `2.3.2`, `2.3.1`, `2.3.0`
2222

2323
[//]: # (- Latest Experimental Version: <span class="badge badge-secondary" style={{backgroundColor: '#7952b3'}}>3.0.0-SNAPSHOT</span>)
2424

@@ -50,7 +50,7 @@ This table specifies the metamodel standards supported by the Bigraph Framework.
5050
<td>2.0.1, 1.6.1</td>
5151
</tr>
5252
<tr>
53-
<td>2.3.3, 2.3.2, 2.3.1, 2.3.0</td>
53+
<td>2.3.4, 2.3.3, 2.3.2, 2.3.1, 2.3.0</td>
5454
<td>2.0.2</td>
5555
</tr>
5656
</table>

documentation/v2-docusaurus/src/components/BigraphDependencyBlock.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,33 +8,33 @@ const mavenDepCode = `
88
<dependency>
99
<groupId>org.bigraphs.framework</groupId>
1010
<artifactId>bigraph-core</artifactId>
11-
<version>2.3.3</version>
11+
<version>2.3.4</version>
1212
</dependency>
1313
<!-- Simulation Module -->
1414
<dependency>
1515
<groupId>org.bigraphs.framework</groupId>
1616
<artifactId>bigraph-simulation</artifactId>
17-
<version>2.3.3</version>
17+
<version>2.3.4</version>
1818
</dependency>
1919
<!-- Visualization Module -->
2020
<dependency>
2121
<groupId>org.bigraphs.framework</groupId>
2222
<artifactId>bigraph-visualization</artifactId>
23-
<version>2.3.3</version>
23+
<version>2.3.4</version>
2424
</dependency>
2525
<!-- Converter Module -->
2626
<dependency>
2727
<groupId>org.bigraphs.framework</groupId>
2828
<artifactId>bigraph-converter</artifactId>
29-
<version>2.3.3</version>
29+
<version>2.3.4</version>
3030
</dependency>
3131
`;
3232

3333
const gradleDepCode = `
34-
compile "org.bigraphs.framework:bigraph-core:2.3.3"
35-
compile "org.bigraphs.framework:bigraph-simulation:2.3.3"
36-
compile "org.bigraphs.framework:bigraph-visualization:2.3.3"
37-
compile "org.bigraphs.framework:bigraph-converter:2.3.3"
34+
compile "org.bigraphs.framework:bigraph-core:2.3.4"
35+
compile "org.bigraphs.framework:bigraph-simulation:2.3.4"
36+
compile "org.bigraphs.framework:bigraph-visualization:2.3.4"
37+
compile "org.bigraphs.framework:bigraph-converter:2.3.4"
3838
`;
3939

4040
export const GRADLE_DEP_CODE = gradleDepCode;

0 commit comments

Comments
 (0)