Skip to content

Commit

Permalink
Write release notes for QuikGraph.MSAGL module.
Browse files Browse the repository at this point in the history
Use StrongNamer to allow to reference non strong named assembly for QuikGraph.MSAGL.
  • Loading branch information
KeRNeLith committed Jun 18, 2020
1 parent 7f15a34 commit 5d64909
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
| | [![Nuget Status](https://img.shields.io/nuget/v/quikgraph.serialization.svg)](https://www.nuget.org/packages/QuikGraph.Serialization) QuikGraph.Serialization |
| | [![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 |
| **License** | MS-PL |

# QuikGraph
Expand Down Expand Up @@ -67,6 +68,7 @@ QuikGraph is available on [NuGet](https://www.nuget.org) in several modules.
- [QuikGraph.Serialization](https://www.nuget.org/packages/QuikGraph.Serialization)
- [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)

### 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
@@ -1,6 +1,6 @@
# Release notes

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

### QuikGraph

Expand All @@ -24,6 +24,22 @@
* Fully document library.
* Use JetBrains annotations all over the library as much as possible.

### QuikGraph.MSAGL

Migrate the library from GLEE to [MSAGL](https://www.microsoft.com/en-us/research/project/microsoft-automatic-graph-layout) (MSAGL is the successor of GLEE).

#### Fixes:
* Fix typo in populator algorithm.
* Fix a bug when converting undirected graph to MSAGL graph.

### 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
4 changes: 4 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,8 @@ QuikGraph is available on [NuGet](https://www.nuget.org) in several modules.

PM> Install-Package QuikGraph.Data

[![Nuget Status](https://img.shields.io/nuget/v/quikgraph.msagl.svg)](https://www.nuget.org/packages/QuikGraph.MSAGL) [QuikGraph.MSAGL](https://www.nuget.org/packages/QuikGraph.MSAGL)

PM> Install-Package QuikGraph.MSAGL

<img src="images/quikgraph_logo.png" width="128" height="128" style="display: block; margin-left: auto; margin-right: auto" />
13 changes: 12 additions & 1 deletion src/QuikGraph.MSAGL/QuikGraph.MSAGL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,17 @@ Supports Source Link</Description>

<IsPackable>true</IsPackable>
<PackageId>QuikGraph.MSAGL</PackageId>
<PackageReleaseNotes>➟ Release 2.2.0</PackageReleaseNotes>
<PackageReleaseNotes>➟ Release 2.2.0
Rework the original QuickGraph.Glee module into QuikGraph.MSAGL (MSAGL is the successor of GLEE). This make possible to use the bridge from QuikGraph to MSAGL.

Fixes:
- Fix typo in populator algorithm.
- Fix a bug when converting undirected graph to MSAGL graph.

Misc:
- Clean the library code.
- Fully document library.
- Use JetBrains annotations all over the library as much as possible.</PackageReleaseNotes>
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET MSAGL</PackageTags>
</PropertyGroup>

Expand All @@ -41,6 +51,7 @@ Supports Source Link</Description>
<!-- Dependencies -->
<!-- Externals -->
<ItemGroup>
<PackageReference Condition="$(DeployBuild)" Include="StrongNamer" Version="0.2.5" PrivateAssets="All" />
<PackageReference Include="AutomaticGraphLayout" Version="1.1.7" />
<PackageReference Include="AutomaticGraphLayout.Drawing" Version="1.1.7" />
</ItemGroup>
Expand Down

0 comments on commit 5d64909

Please sign in to comment.