Skip to content

Commit f44baa8

Browse files
committed
release(v2.3.6)
1 parent 86914ee commit f44baa8

File tree

9 files changed

+25
-25
lines changed

9 files changed

+25
-25
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -199,25 +199,25 @@ composite.juxtapose(F).parallelProduct(H);
199199
<dependency>
200200
<groupId>org.bigraphs.framework</groupId>
201201
<artifactId>bigraph-core</artifactId>
202-
<version>2.3.5</version>
202+
<version>2.3.6</version>
203203
</dependency>
204204

205205
<dependency>
206206
<groupId>org.bigraphs.framework</groupId>
207207
<artifactId>bigraph-simulation</artifactId>
208-
<version>2.3.5</version>
208+
<version>2.3.6</version>
209209
</dependency>
210210

211211
<dependency>
212212
<groupId>org.bigraphs.framework</groupId>
213213
<artifactId>bigraph-visualization</artifactId>
214-
<version>2.3.5</version>
214+
<version>2.3.6</version>
215215
</dependency>
216216

217217
<dependency>
218218
<groupId>org.bigraphs.framework</groupId>
219219
<artifactId>bigraph-converter</artifactId>
220-
<version>2.3.5</version>
220+
<version>2.3.6</version>
221221
</dependency>
222222

223223
</dependencies>
@@ -226,10 +226,10 @@ composite.juxtapose(F).parallelProduct(H);
226226
### Gradle
227227

228228
```groovy
229-
compile "org.bigraphs.framework:bigraph-core:2.3.5"
230-
compile "org.bigraphs.framework:bigraph-simulation:2.3.5"
231-
compile "org.bigraphs.framework:bigraph-visualization:2.3.5"
232-
compile "org.bigraphs.framework:bigraph-converter:2.3.5"
229+
compile "org.bigraphs.framework:bigraph-core:2.3.6"
230+
compile "org.bigraphs.framework:bigraph-simulation:2.3.6"
231+
compile "org.bigraphs.framework:bigraph-visualization:2.3.6"
232+
compile "org.bigraphs.framework:bigraph-converter:2.3.6"
233233
```
234234

235235
### 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.4.0-SNAPSHOT</version>
8+
<version>2.3.6</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.4.0-SNAPSHOT</version>
7+
<version>2.3.6</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.4.0-SNAPSHOT</version>
8+
<version>2.3.6</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

documentation/v2-docusaurus/docs/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import TabItem from '@theme/TabItem';
1717
</center>
1818

1919

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

2323
:::info Migration `2.1.2``2.2.0`
2424
For refactor and upgrade instructions, please see the
@@ -52,7 +52,7 @@ This table specifies the metamodel standards supported by the Bigraph Framework.
5252
<td>2.0.2</td>
5353
</tr>
5454
<tr>
55-
<td>2.3.5</td>
55+
<td>2.3.6, 2.3.5</td>
5656
<td>2.0.3</td>
5757
</tr>
5858
</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.5</version>
11+
<version>2.3.6</version>
1212
</dependency>
1313
<!-- Simulation Module -->
1414
<dependency>
1515
<groupId>org.bigraphs.framework</groupId>
1616
<artifactId>bigraph-simulation</artifactId>
17-
<version>2.3.5</version>
17+
<version>2.3.6</version>
1818
</dependency>
1919
<!-- Visualization Module -->
2020
<dependency>
2121
<groupId>org.bigraphs.framework</groupId>
2222
<artifactId>bigraph-visualization</artifactId>
23-
<version>2.3.5</version>
23+
<version>2.3.6</version>
2424
</dependency>
2525
<!-- Converter Module -->
2626
<dependency>
2727
<groupId>org.bigraphs.framework</groupId>
2828
<artifactId>bigraph-converter</artifactId>
29-
<version>2.3.5</version>
29+
<version>2.3.6</version>
3030
</dependency>
3131
`;
3232

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

4040
export const GRADLE_DEP_CODE = gradleDepCode;

pom.xml

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

66
<groupId>org.bigraphs.framework</groupId>
77
<artifactId>framework-parent</artifactId>
8-
<version>2.4.0-SNAPSHOT</version>
8+
<version>2.3.6</version>
99
<packaging>pom</packaging>
1010
<name>Bigraph Parent Project</name>
1111
<description>

simulation/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.4.0-SNAPSHOT</version>
7+
<version>2.3.6</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>

visualization/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.4.0-SNAPSHOT</version>
7+
<version>2.3.6</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)