Skip to content

Commit

Permalink
Write release notes for QuikGraph modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
KeRNeLith committed Jul 3, 2022
1 parent 19a63f0 commit 352b293
Show file tree
Hide file tree
Showing 7 changed files with 165 additions and 30 deletions.
124 changes: 124 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,127 @@
# Release notes

## What's new in 2.5.0 July 4 2022

### QuikGraph

#### Updates:
* Input type for transitive closure/reduction algorithms is more open (IEdgeListGraph rather than BidirectionalGraph).
* CryptoRandom no more use deprecate random number generator.
* Extends algorithms using CrytoRandom by default (CyclePoppingRandomTreeAlgorithm, MarkovEdgeChainBase, MinimumVertexCoverApproximationAlgorithm).

#### New:
* Add cycle checking for edge set and undirected graphs (DAG - Directed Acyclic Graph check).

#### Misc:
* Assembly is CLS compliant (Common Language Specification).

### QuikGraph.Serialization

#### Fixes:
* Fix fields being written several times during GraphML serialization for types with multiple inheritance layers.
* Fix user data that may be skipped during GraphML deserialization.
* Better handle null strings being serialized through GraphML serialization.

#### Updates:
* Deprecate binary serialization for targets lower than .NET Framework 4.6.1.
* Update package dependencies.

#### Optims:
* Optimize generated method calls for GraphML serialization.

#### Misc:
* Add target .NET Framework 4.6.1.
* Assembly is CLS compliant (Common Language Specification).

### QuikGraph.Graphviz

#### Updates:
* Deprecate ToSvg API (underlying web service is down).
* Update package dependencies.

#### Misc:
* Assembly is CLS compliant (Common Language Specification).

### QuikGraph.Data

#### Updates:
* Update package dependencies.

#### Misc:
* Assembly is CLS compliant (Common Language Specification).

### QuikGraph.MSAGL

#### Updates:
* Update package dependencies.

#### Misc:
* Assembly is CLS compliant (Common Language Specification).

### QuikGraph.Petri

#### Updates:
* Update package dependencies.

#### Misc:
* Assembly is CLS compliant (Common Language Specification).

---

## What's new in 2.4.0 July 3 2022

### QuikGraph

#### Updates:
* Vertices and edges removal notifications from AdjacencyGraph, EdgeListGraph, BidirectionalGraph and UndirectedGraph are more consistent.

#### Optims:
* Optimize vertices and/or edges removal operations on AdjacencyGraph, BidirectionalGraph, BidirectionalMatrixGraph, ClusteredAdjacencyGraph and UndirectedGraph.

#### New:
* Expose a Prim relaxer.

#### Misc:
* Improve library documentation related to raisable exceptions.
* Remove the dependency to System.Reflection.TypeExtensions for .NET Standard 1.3 target.

### QuikGraph.Serialization

#### Updates:
* GraphML deserialization extensions now work on IMutableVertexAndEdgeSet rather than IMutableVertexAndEdgeListGraph (allow deserialization on undirected graph).
* Update package dependencies.

#### Misc:
* Add target to reduce dependencies in some cases.

### QuikGraph.Graphviz

#### Fixes:
* Fix the conversion to Graphviz from delegate graph implementations.

#### Optims:
* Slight optimizations.

#### Updates:
* Update package dependencies.

### QuikGraph.Data

#### Updates:
* Update package dependencies.

### QuikGraph.MSAGL

#### Updates:
* Update package dependencies.

### QuikGraph.Petri

#### Updates:
* Update package dependencies.

---

## What's new in 2.3.1 August 30 2021

### QuikGraph.Graphviz
Expand All @@ -13,6 +135,8 @@
#### New:
* Add support of HTML labels.

---

## What's new in 2.3.0 February 4 2021

### QuikGraph
Expand Down
7 changes: 5 additions & 2 deletions src/QuikGraph.Data/QuikGraph.Data.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,12 @@ Supports Source Link</Description>

<IsPackable>true</IsPackable>
<PackageId>QuikGraph.Data</PackageId>
<PackageReleaseNotes>➟ Release 2.3.0
<PackageReleaseNotes>➟ Release 2.5.0
Updates:
- Update package dependencies.</PackageReleaseNotes>
- Update package dependencies.

Misc:
- Assembly is CLS compliant (Common Language Specification).</PackageReleaseNotes>
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET Serialization Data</PackageTags>
</PropertyGroup>

Expand Down
12 changes: 5 additions & 7 deletions src/QuikGraph.Graphviz/QuikGraph.Graphviz.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,13 @@ Supports Source Link</Description>

<IsPackable>true</IsPackable>
<PackageId>QuikGraph.Graphviz</PackageId>
<PackageReleaseNotes>➟ Release 2.3.1
Fixes:
- Properly treat common vertex format when converting a graph to Graphviz.

<PackageReleaseNotes>➟ Release 2.5.0
Updates:
- Label has priority if set over Record on GraphvizVertex.
- Deprecate ToSvg API (underlying web service is down).
- Update package dependencies.

New:
- Add support of HTML labels.</PackageReleaseNotes>
Misc:
- Assembly is CLS compliant (Common Language Specification).</PackageReleaseNotes>
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET Serialization Graphviz</PackageTags>
</PropertyGroup>

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

<IsPackable>true</IsPackable>
<PackageId>QuikGraph.MSAGL</PackageId>
<PackageReleaseNotes>➟ Release 2.3.0
Fixes:
- Update reference to AutomaticGraphLayout packages in order to fix assembly strong naming issues.

<PackageReleaseNotes>➟ Release 2.5.0
Updates:
- Update package dependencies.</PackageReleaseNotes>
- Update package dependencies.

Misc:
- Assembly is CLS compliant (Common Language Specification).</PackageReleaseNotes>
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET MSAGL</PackageTags>
</PropertyGroup>

Expand Down
7 changes: 5 additions & 2 deletions src/QuikGraph.Petri/QuikGraph.Petri.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,12 @@ Supports Source Link</Description>

<IsPackable>true</IsPackable>
<PackageId>QuikGraph.Petri</PackageId>
<PackageReleaseNotes>➟ Release 2.3.0
<PackageReleaseNotes>➟ Release 2.5.0
Updates:
- Update package dependencies.</PackageReleaseNotes>
- Update package dependencies.

Misc:
- Assembly is CLS compliant (Common Language Specification).</PackageReleaseNotes>
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET Petri</PackageTags>
</PropertyGroup>

Expand Down
17 changes: 15 additions & 2 deletions src/QuikGraph.Serialization/QuikGraph.Serialization.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,22 @@ Supports Source Link</Description>

<IsPackable>true</IsPackable>
<PackageId>QuikGraph.Serialization</PackageId>
<PackageReleaseNotes>➟ Release 2.3.0
<PackageReleaseNotes>➟ Release 2.5.0
Fixes:
- Fix fields being written several times during GraphML serialization for types with multiple inheritance layers.
- Fix user data that may be skipped during GraphML deserialization.
- Better handle null strings being serialized through GraphML serialization.

Updates:
- Update package dependencies.</PackageReleaseNotes>
- Deprecate binary serialization for targets lower than .NET Framework 4.6.1.
- Update package dependencies.

Optims:
- Optimize generated method calls for GraphML serialization.

Misc:
- Add target .NET Framework 4.6.1.
- Assembly is CLS compliant (Common Language Specification).</PackageReleaseNotes>
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET Serialization</PackageTags>
</PropertyGroup>

Expand Down
18 changes: 6 additions & 12 deletions src/QuikGraph/QuikGraph.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,23 +34,17 @@ Supports Source Link</Description>

<IsPackable>true</IsPackable>
<PackageId>QuikGraph</PackageId>
<PackageReleaseNotes>➟ Release 2.3.0
Fixes:
- Fix the serialization implementation of UndirectedGraph, ArrayUndirectedGraph and UndirectedBidirectionalGraph.
- Fix A* implementation to also compute cost on tree edge.

<PackageReleaseNotes>➟ Release 2.5.0
Updates:
- Remove some serializable attributes from algorithms and predicates classes (homognization).
- Remove serializable attributes from delegate graphs implementations.
- All QuikGraph exceptions can be constructed with a custom message and an eventual inner exception.
- CompressedSparseRowGraph also implements IEdgeListGraph interface.
- EquateGraphs.Equate helpers now supports a wider range of graph comparisons.
- Input type for transitive closure/reduction algorithms is more open (IEdgeListGraph rather than BidirectionalGraph).
- CryptoRandom no more use deprecate random number generator.
- Extends algorithms using CrytoRandom by default (CyclePoppingRandomTreeAlgorithm, MarkovEdgeChainBase, MinimumVertexCoverApproximationAlgorithm).

New:
- Add the IDistancesCollection to interface the distance information retrieval from shortest path algorithms. Legacy accesses to distances are marked as obsolete.
- Add cycle checking for edge set and undirected graphs (DAG - Directed Acyclic Graph check).

Misc:
- Remove the dependency to System.Collections.NonGeneric for .NET Standard 1.3 target.</PackageReleaseNotes>
- Assembly is CLS compliant (Common Language Specification).</PackageReleaseNotes>
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET</PackageTags>
</PropertyGroup>

Expand Down

0 comments on commit 352b293

Please sign in to comment.