Skip to content

Commit 354de29

Browse files
committed
Write release notes.
1 parent 53620e9 commit 354de29

File tree

6 files changed

+24
-27
lines changed

6 files changed

+24
-27
lines changed

src/QuikGraph.Data/QuikGraph.Data.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<TargetFrameworks>net35;netstandard2.0</TargetFrameworks>
@@ -28,7 +28,7 @@ Supports Source Link</Description>
2828

2929
<IsPackable>true</IsPackable>
3030
<PackageId>QuikGraph.Data</PackageId>
31-
<PackageReleaseNotes>➟ Release 2.3.0
31+
<PackageReleaseNotes>➟ Release 2.4.0
3232
Updates:
3333
- Update package dependencies.</PackageReleaseNotes>
3434
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET Serialization Data</PackageTags>

src/QuikGraph.Graphviz/QuikGraph.Graphviz.csproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ Supports Source Link</Description>
2828

2929
<IsPackable>true</IsPackable>
3030
<PackageId>QuikGraph.Graphviz</PackageId>
31-
<PackageReleaseNotes>➟ Release 2.3.1
31+
<PackageReleaseNotes>➟ Release 2.4.0
3232
Fixes:
33-
- Properly treat common vertex format when converting a graph to Graphviz.
33+
- Fix the conversion to Graphviz from delegate graph implementations.
3434

35-
Updates:
36-
- Label has priority if set over Record on GraphvizVertex.
35+
Optims:
36+
- Slight optimizations.
3737

38-
New:
39-
- Add support of HTML labels.</PackageReleaseNotes>
38+
Updates:
39+
- Update package dependencies.</PackageReleaseNotes>
4040
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET Serialization Graphviz</PackageTags>
4141
</PropertyGroup>
4242

src/QuikGraph.MSAGL/QuikGraph.MSAGL.csproj

+1-4
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,7 @@ Supports Source Link</Description>
2828

2929
<IsPackable>true</IsPackable>
3030
<PackageId>QuikGraph.MSAGL</PackageId>
31-
<PackageReleaseNotes>➟ Release 2.3.0
32-
Fixes:
33-
- Update reference to AutomaticGraphLayout packages in order to fix assembly strong naming issues.
34-
31+
<PackageReleaseNotes>➟ Release 2.4.0
3532
Updates:
3633
- Update package dependencies.</PackageReleaseNotes>
3734
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET MSAGL</PackageTags>

src/QuikGraph.Petri/QuikGraph.Petri.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Supports Source Link</Description>
2828

2929
<IsPackable>true</IsPackable>
3030
<PackageId>QuikGraph.Petri</PackageId>
31-
<PackageReleaseNotes>➟ Release 2.3.0
31+
<PackageReleaseNotes>➟ Release 2.4.0
3232
Updates:
3333
- Update package dependencies.</PackageReleaseNotes>
3434
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET Petri</PackageTags>

src/QuikGraph.Serialization/QuikGraph.Serialization.csproj

+6-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,13 @@ Supports Source Link</Description>
2828

2929
<IsPackable>true</IsPackable>
3030
<PackageId>QuikGraph.Serialization</PackageId>
31-
<PackageReleaseNotes>➟ Release 2.3.0
31+
<PackageReleaseNotes>➟ Release 2.4.0
3232
Updates:
33-
- Update package dependencies.</PackageReleaseNotes>
33+
- GraphML deserialization extensions now work on IMutableVertexAndEdgeSet rather than IMutableVertexAndEdgeListGraph (allow deserialization on undirected graph).
34+
- Update package dependencies.
35+
36+
Misc:
37+
- Add target to reduce dependencies in some cases.</PackageReleaseNotes>
3438
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET Serialization</PackageTags>
3539
</PropertyGroup>
3640

src/QuikGraph/QuikGraph.csproj

+8-12
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,19 @@ Supports Source Link</Description>
3434

3535
<IsPackable>true</IsPackable>
3636
<PackageId>QuikGraph</PackageId>
37-
<PackageReleaseNotes>➟ Release 2.3.0
38-
Fixes:
39-
- Fix the serialization implementation of UndirectedGraph, ArrayUndirectedGraph and UndirectedBidirectionalGraph.
40-
- Fix A* implementation to also compute cost on tree edge.
41-
37+
<PackageReleaseNotes>➟ Release 2.4.0
4238
Updates:
43-
- Remove some serializable attributes from algorithms and predicates classes (homognization).
44-
- Remove serializable attributes from delegate graphs implementations.
45-
- All QuikGraph exceptions can be constructed with a custom message and an eventual inner exception.
46-
- CompressedSparseRowGraph also implements IEdgeListGraph interface.
47-
- EquateGraphs.Equate helpers now supports a wider range of graph comparisons.
39+
- Vertices and edges removal notifications from AdjacencyGraph, EdgeListGraph, BidirectionalGraph and UndirectedGraph are more consistent.
40+
41+
Optims:
42+
- Optimize vertices and/or edges removal operations on AdjacencyGraph, BidirectionalGraph, BidirectionalMatrixGraph, ClusteredAdjacencyGraph and UndirectedGraph.
4843

4944
New:
50-
- Add the IDistancesCollection to interface the distance information retrieval from shortest path algorithms. Legacy accesses to distances are marked as obsolete.
45+
- Expose a Prim relaxer.
5146

5247
Misc:
53-
- Remove the dependency to System.Collections.NonGeneric for .NET Standard 1.3 target.</PackageReleaseNotes>
48+
- Improve library documentation related to raisable exceptions.
49+
- Remove the dependency to System.Reflection.TypeExtensions for .NET Standard 1.3 target.</PackageReleaseNotes>
5450
<PackageTags>QuickGraph QuikGraph Graph Structure Algorithm C# .NET</PackageTags>
5551
</PropertyGroup>
5652

0 commit comments

Comments
 (0)