Skip to content

Commit

Permalink
Write release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
KeRNeLith committed Feb 16, 2020
1 parent 744db73 commit 5f1667e
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 6 deletions.
22 changes: 22 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,33 @@
# Release notes

## What's new in 2.0.0 February 16 2020

### QuikGraph

Split QuikGraph package into 2 packages to extract serialization features:
- QuikGraph
- QuikGraph.Serialization

#### New:
* Add struct based edge implementations that were in original QuickGraph (STaggedEdge, STaggedUndirectedEdge and SEquatableTaggedEdge).

#### Misc:
* Package no more reference JetBrains.Annotations package, it rather uses some as internal implementation (same development experience for package consumer).

### QuikGraph.Serialization

Serialization features extracted from core package.

---

## What's new in 1.0.1 January 20 2020

### Fixes:
* Properly deal with isolated vertices for transitive reduction algorithm.
* Properly deal with isolated vertices for transitive closure algorithm.

---

## What's new in 1.0.0 December 10 2019

This release is based on YC.QuikGraph 3.7.5-deta with a lot of updates.
Expand Down
3 changes: 2 additions & 1 deletion src/QuikGraph.Serialization/QuikGraph.Serialization.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ Supports Source Link</Description>

<IsPackable>true</IsPackable>
<PackageId>QuikGraph.Serialization</PackageId>
<PackageReleaseNotes>➟ Release 1.0.0</PackageReleaseNotes>
<PackageReleaseNotes>➟ Release 2.0.0
Extracts serialization features from QuikGraph package.</PackageReleaseNotes>
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET Serialization</PackageTags>
</PropertyGroup>

Expand Down
15 changes: 10 additions & 5 deletions src/QuikGraph/QuikGraph.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,16 @@ Supports Source Link</Description>

<IsPackable>true</IsPackable>
<PackageId>QuikGraph</PackageId>
<PackageReleaseNotes>➟ Release 1.0.1
Fixes:
- Properly deal with isolated vertices for transitive reduction algorithm.
- Properly deal with isolated vertices for transitive closure algorithm.
</PackageReleaseNotes>
<PackageReleaseNotes>➟ Release 2.0.0
Split QuikGraph package into 2 packages to extract serialization features:
- QuikGraph
- QuikGraph.Serialization

New:
- Add struct based edge implementations that were in original QuickGraph (STaggedEdge, STaggedUndirectedEdge and SEquatableTaggedEdge).

Misc:
- Package no more reference JetBrains.Annotations package, it rather uses some as internal implementation (same development experience for package consumer).</PackageReleaseNotes>
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET</PackageTags>
</PropertyGroup>

Expand Down

0 comments on commit 5f1667e

Please sign in to comment.