Skip to content

Commit 3500319

Browse files
committed
version 0.3.1
1 parent 785a110 commit 3500319

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

CHANGELOG.md

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
# Revision history for digraph
22

3+
## 0.3.1 -- 2023-03-31
4+
5+
* Add some degree-diameter graphs to the list of known graphs. These graphs
6+
represent the best currently known solutions for the respective degree and
7+
diameter. In concrete the graphs `d3k4`, `d4k3`, `d4k4`, `d5k3`, and `d5k4`
8+
have been added.
9+
310
## 0.3.0 -- 2023-02-03
411

5-
* Fix `fromAdjacencySets` and to preserve edge direction. This affects
6-
the functions for computing shortest paths, distance, and diameter. These
7-
functions now return correct results for directed graphs. Before these
8-
functions silently turned the input into an undirected graph. (Contributed by
12+
* Fix `fromAdjacencySets` to preserve edge direction. This affects the functions
13+
for computing shortest paths, distance, and diameter. These functions now
14+
return correct results for directed graphs. Before these functions silently
15+
turned the input into an undirected graph. (Contributed by
916
[Geometer1729](https://github.com/Geometer1729))
1017

1118
* Add `pentagon` and `ascendingCube` to the list of known graphs.

digraph.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: digraph
3-
version: 0.3.0
3+
version: 0.3.1
44
synopsis: Directed Graphs
55
description: Directed graphs implementation that is based on unordered-containers
66
homepage: https://github.com/kadena-io/digraph
@@ -9,7 +9,7 @@ license: BSD-3-Clause
99
license-file: LICENSE
1010
author: Lars Kuhtz
1111
maintainer: [email protected]
12-
copyright: Copyright (c) 2019 - 2023, Kadena LLC
12+
copyright: Copyright (c) 2019 - 2025, Kadena LLC
1313
category: Data, Mathematics
1414
tested-with:
1515
GHC==9.12

0 commit comments

Comments
 (0)