Skip to content

Commit eaf60ce

Browse files
committed
Prepare for v1.5.1 release
1 parent 7d7e3bc commit eaf60ce

File tree

4 files changed

+19
-9
lines changed

4 files changed

+19
-9
lines changed

.VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.0
1+
1.5.1

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
# CHANGELOG – Digraphs package for GAP
2-
Copyright © 2014-21 by Jan De Beule, Julius Jonušas, James D. Mitchell,
2+
Copyright © 2014-22 by Jan De Beule, Julius Jonušas, James D. Mitchell,
33
Wilf A. Wilson, Michael Young et al.
44

55
Licensing information can be found in the `LICENSE` file.
66

7+
## Version 1.5.1 (released 29/03/2022)
8+
9+
This minor release contains several bugfixes and technical changes. This includes:
10+
11+
* Bugfix: vertex labels are no longer wrongly retained when using `DigraphEdgeUnion`. This was reported by [Wilf A. Wilson][] in [Issue #496](https://github.com/digraphs/Digraphs/issues/496) and fixed by Joseph Edwards in [PR #507](https://github.com/digraphs/Digraphs/pull/507).
12+
* Bugfix: a segfault could be caused by calling `OutNeighbours` with an inappropriate argument. This was reported by [Wilf A. Wilson][] in [Issue #518](https://github.com/digraphs/Digraphs/issues/518) and fixed by [James D. Mitchell][] in [PR #519](https://github.com/digraphs/Digraphs/pull/519).
13+
* [Wilf A. Wilson][] improved the performance of `DigraphAddEdge` for digraphs without edge labels in [PR #509](https://github.com/digraphs/Digraphs/pull/509).
14+
* [Max Horn][] changed the declaration of the variable `Vertices` to improve compatibility with Grape in [PR #530](https://github.com/digraphs/Digraphs/pull/530).
15+
716
## Version 1.5.0 (released 27/10/2021)
817

918
This is a fairly major release of the Digraphs package, containing some bugfixes and several new features.

PackageInfo.g

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
#############################################################################
22
##
33
## PackageInfo.g
4-
## Copyright (C) 2015-21 James D. Mitchell
4+
## Copyright (C) 2015-22 James D. Mitchell
55
##
66
## Licensing information can be found in the README.md file of this package.
77
##
88
#############################################################################
99
##
1010

1111
## <#GAPDoc Label="PKGVERSIONDATA">
12-
## <!ENTITY VERSION "1.5.0">
12+
## <!ENTITY VERSION "1.5.1">
1313
## <!ENTITY GAPVERS "4.10.0">
1414
## <!ENTITY GRAPEVERS "4.8.1">
1515
## <!ENTITY IOVERS "4.5.1">
1616
## <!ENTITY ORBVERS "4.8.2">
1717
## <!ENTITY DATASTRUCTURESVERS "0.2.5">
1818
## <!ENTITY NAUTYTRACESINTERFACEVERS "0.2">
19-
## <!ENTITY ARCHIVENAME "digraphs-1.5.0">
20-
## <!ENTITY COPYRIGHTYEARS "2014-21">
19+
## <!ENTITY ARCHIVENAME "digraphs-1.5.1">
20+
## <!ENTITY COPYRIGHTYEARS "2014-22">
2121
## <#/GAPDoc>
2222

2323
_STANDREWSMATHS := Concatenation(["Mathematical Institute, North Haugh, ",
@@ -28,8 +28,8 @@ _STANDREWSCS := Concatenation(["Jack Cole Building, North Haugh, ",
2828
SetPackageInfo(rec(
2929
PackageName := "Digraphs",
3030
Subtitle := "Graphs, digraphs, and multidigraphs in GAP",
31-
Version := "1.5.0",
32-
Date := "27/10/2021", # dd/mm/yyyy format
31+
Version := "1.5.1",
32+
Date := "29/03/2022", # dd/mm/yyyy format
3333
License := "GPL-3.0-or-later",
3434
ArchiveFormats := ".tar.gz",
3535

VERSIONS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
#############################################################################
22
##
33
#W VERSIONS
4-
#Y Copyright (C) 2015-21 James D. Mitchell
4+
#Y Copyright (C) 2015-22 James D. Mitchell
55
##
66
## Licensing information can be found in the README.md file of this package.
77
##
88
#############################################################################
99
##
1010

11+
release 1.5.1 - 29/03/2022
1112
release 1.5.0 - 27/10/2021
1213
release 1.4.1 - 14/05/2021
1314
release 1.4.0 - 27/01/2021

0 commit comments

Comments
 (0)