Skip to content

Commit e09dbd0

Browse files
committed
Write release notes for QuikGraph.Petri module.
1 parent aafdab1 commit e09dbd0

File tree

5 files changed

+31
-2
lines changed

5 files changed

+31
-2
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
| | [![Nuget Status](https://img.shields.io/nuget/v/quikgraph.graphviz.svg)](https://www.nuget.org/packages/QuikGraph.Graphviz) QuikGraph.Graphviz |
99
| | [![Nuget Status](https://img.shields.io/nuget/v/quikgraph.data.svg)](https://www.nuget.org/packages/QuikGraph.Data) QuikGraph.Data |
1010
| | [![Nuget Status](https://img.shields.io/nuget/v/quikgraph.msagl.svg)](https://www.nuget.org/packages/QuikGraph.MSAGL) QuikGraph.MSAGL |
11+
| | [![Nuget Status](https://img.shields.io/nuget/v/quikgraph.petri.svg)](https://www.nuget.org/packages/QuikGraph.Petri) QuikGraph.Petri |
1112
| **License** | MS-PL |
1213

1314
# QuikGraph
@@ -69,6 +70,7 @@ QuikGraph is available on [NuGet](https://www.nuget.org) in several modules.
6970
- [QuikGraph.Graphviz](https://www.nuget.org/packages/QuikGraph.Graphviz)
7071
- [QuikGraph.Data](https://www.nuget.org/packages/QuikGraph.Data)
7172
- [QuikGraph.MSAGL](https://www.nuget.org/packages/QuikGraph.MSAGL)
73+
- [QuikGraph.Petri](https://www.nuget.org/packages/QuikGraph.Petri)
7274

7375
### Where to go next?
7476

RELEASE_NOTES.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
---
1111

12-
## What's new in 2.2.0 June 7 2020, June 11 2020 and June 18 2020
12+
## What's new in 2.2.0 June 7 2020, June 11 2020, June 18 2020 and June 25 2020
1313

1414
### QuikGraph
1515

@@ -49,6 +49,22 @@ Migrate the library from GLEE to [MSAGL](https://www.microsoft.com/en-us/researc
4949
* Fully document library.
5050
* Use JetBrains annotations all over the library as much as possible.
5151

52+
### QuikGraph.Petri
53+
54+
#### Fixes:
55+
* Fix PetriNetSimulator with possible collection modified while enumerating.
56+
57+
#### Updates:
58+
* Really make IPetriNet immutable to enforce the difference with IMutablePetriNet.
59+
60+
### API Breaks
61+
* Some public API breaks (but should remain simple to do a migration).
62+
63+
#### Misc:
64+
* Clean the library code.
65+
* Fully document library.
66+
* Use JetBrains annotations all over the library as much as possible.
67+
5268
---
5369

5470
## What's new in 2.1.1 June 6 2020

docs/docfx.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"src/QuikGraph.Serialization/**.csproj",
99
"src/QuikGraph.Graphviz/**.csproj",
1010
"src/QuikGraph.Data/**.csproj",
11-
"src/QuikGraph.MSAGL/**.csproj"
11+
"src/QuikGraph.MSAGL/**.csproj",
12+
"src/QuikGraph.Petri/**.csproj"
1213
],
1314
"exclude": [
1415
"**/obj/**",

docs/index.md

+4
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,8 @@ QuikGraph is available on [NuGet](https://www.nuget.org) in several modules.
5757

5858
PM> Install-Package QuikGraph.MSAGL
5959

60+
[![Nuget Status](https://img.shields.io/nuget/v/quikgraph.petri.svg)](https://www.nuget.org/packages/QuikGraph.Petri) [QuikGraph.Petri](https://www.nuget.org/packages/QuikGraph.Petri)
61+
62+
PM> Install-Package QuikGraph.Petri
63+
6064
<img src="images/quikgraph_logo.png" width="128" height="128" style="display: block; margin-left: auto; margin-right: auto" />

src/QuikGraph.Petri/QuikGraph.Petri.csproj

+6
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ Supports Source Link</Description>
3131
<PackageReleaseNotes>➟ Release 2.2.0
3232
Rework the original QuickGraph.Petri module into QuikGraph.Petri. This make possible to use the Petri Net features.
3333

34+
Fixes:
35+
- Fix PetriNetSimulator with possible collection modified while enumerating.
36+
37+
Updates:
38+
- Really make IPetriNet immutable to enforce the difference with IMutablePetriNet.
39+
3440
Misc:
3541
- Clean the library code.
3642
- Fully document library.

0 commit comments

Comments
 (0)