Skip to content

Commit

Permalink
Write release notes for QuikGraph.Petri module.
Browse files Browse the repository at this point in the history
  • Loading branch information
KeRNeLith committed Jun 24, 2020
1 parent aafdab1 commit e09dbd0
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
| | [![Nuget Status](https://img.shields.io/nuget/v/quikgraph.graphviz.svg)](https://www.nuget.org/packages/QuikGraph.Graphviz) QuikGraph.Graphviz |
| | [![Nuget Status](https://img.shields.io/nuget/v/quikgraph.data.svg)](https://www.nuget.org/packages/QuikGraph.Data) QuikGraph.Data |
| | [![Nuget Status](https://img.shields.io/nuget/v/quikgraph.msagl.svg)](https://www.nuget.org/packages/QuikGraph.MSAGL) QuikGraph.MSAGL |
| | [![Nuget Status](https://img.shields.io/nuget/v/quikgraph.petri.svg)](https://www.nuget.org/packages/QuikGraph.Petri) QuikGraph.Petri |
| **License** | MS-PL |

# QuikGraph
Expand Down Expand Up @@ -69,6 +70,7 @@ QuikGraph is available on [NuGet](https://www.nuget.org) in several modules.
- [QuikGraph.Graphviz](https://www.nuget.org/packages/QuikGraph.Graphviz)
- [QuikGraph.Data](https://www.nuget.org/packages/QuikGraph.Data)
- [QuikGraph.MSAGL](https://www.nuget.org/packages/QuikGraph.MSAGL)
- [QuikGraph.Petri](https://www.nuget.org/packages/QuikGraph.Petri)

### Where to go next?

Expand Down
18 changes: 17 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

---

## What's new in 2.2.0 June 7 2020, June 11 2020 and June 18 2020
## What's new in 2.2.0 June 7 2020, June 11 2020, June 18 2020 and June 25 2020

### QuikGraph

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

### QuikGraph.Petri

#### Fixes:
* Fix PetriNetSimulator with possible collection modified while enumerating.

#### Updates:
* Really make IPetriNet immutable to enforce the difference with IMutablePetriNet.

### API Breaks
* Some public API breaks (but should remain simple to do a migration).

#### Misc:
* Clean the library code.
* Fully document library.
* Use JetBrains annotations all over the library as much as possible.

---

## What's new in 2.1.1 June 6 2020
Expand Down
3 changes: 2 additions & 1 deletion docs/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"src/QuikGraph.Serialization/**.csproj",
"src/QuikGraph.Graphviz/**.csproj",
"src/QuikGraph.Data/**.csproj",
"src/QuikGraph.MSAGL/**.csproj"
"src/QuikGraph.MSAGL/**.csproj",
"src/QuikGraph.Petri/**.csproj"
],
"exclude": [
"**/obj/**",
Expand Down
4 changes: 4 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,8 @@ QuikGraph is available on [NuGet](https://www.nuget.org) in several modules.

PM> Install-Package QuikGraph.MSAGL

[![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)

PM> Install-Package QuikGraph.Petri

<img src="images/quikgraph_logo.png" width="128" height="128" style="display: block; margin-left: auto; margin-right: auto" />
6 changes: 6 additions & 0 deletions src/QuikGraph.Petri/QuikGraph.Petri.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ Supports Source Link</Description>
<PackageReleaseNotes>➟ Release 2.2.0
Rework the original QuickGraph.Petri module into QuikGraph.Petri. This make possible to use the Petri Net features.

Fixes:
- Fix PetriNetSimulator with possible collection modified while enumerating.

Updates:
- Really make IPetriNet immutable to enforce the difference with IMutablePetriNet.

Misc:
- Clean the library code.
- Fully document library.
Expand Down

0 comments on commit e09dbd0

Please sign in to comment.