Skip to content

Commit e777df0

Browse files
Update versions numbers etc for v1.7.0
1 parent f42f693 commit e777df0

File tree

5 files changed

+59
-10
lines changed

5 files changed

+59
-10
lines changed

.VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.3
1+
1.7.0

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,40 @@ Wilf A. Wilson, Michael Young et al.
44

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

7+
## Version 1.7.0 (released 14/02/2024)
8+
9+
This is a minor release with some new features, and some other improvements in
10+
code quality.
11+
12+
## What's Changed
13+
* Change test that relies on xpdf not being installed by @mtorpey in
14+
https://github.com/digraphs/Digraphs/pull/578
15+
* DigraphAbsorptionProbabilities by @mtorpey in
16+
https://github.com/digraphs/Digraphs/pull/548
17+
* Fix test files: strings and unbinds by @mtorpey in
18+
https://github.com/digraphs/Digraphs/pull/579
19+
* Add immediate methods for connected and strongly connected graphs by @mtorpey
20+
in https://github.com/digraphs/Digraphs/pull/583
21+
* kernel: fix mem leaks for permutations allocated but not freed. by
22+
@james-d-mitchell in https://github.com/digraphs/Digraphs/pull/589
23+
* Remove references to bin/gap.sh by @fingolfin in
24+
https://github.com/digraphs/Digraphs/pull/597
25+
* Fix prototype warnings by @fingolfin in
26+
https://github.com/digraphs/Digraphs/pull/598
27+
* Added EdgeWeightedDigraph by @RaiyanC in
28+
https://github.com/digraphs/Digraphs/pull/575
29+
* Add AbsorptionExpectedSteps by @mtorpey in
30+
https://github.com/digraphs/Digraphs/pull/585
31+
* Fix a typo by @fingolfin in https://github.com/digraphs/Digraphs/pull/608
32+
* configure.ac: fix bashism in string equality test by @orlitzky in
33+
https://github.com/digraphs/Digraphs/pull/613
34+
35+
## New Contributors
36+
* @RaiyanC made their first contribution in https://github.com/digraphs/Digraphs/pull/575
37+
* @orlitzky made their first contribution in https://github.com/digraphs/Digraphs/pull/613
38+
39+
**Full Changelog**: https://github.com/digraphs/Digraphs/compare/v1.6.3...v1.7.0
40+
741
## Version 1.6.3 (released 13/09/2023)
842

943
This is a minor release with some bug fixes, and other issues resolved:

PackageInfo.g

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
#############################################################################
22
##
33
## PackageInfo.g
4-
## Copyright (C) 2015-23 James D. Mitchell
4+
## Copyright (C) 2015-24 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.6.3">
12+
## <!ENTITY VERSION "1.7.0">
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.6.0">
20-
## <!ENTITY COPYRIGHTYEARS "2014-22">
19+
## <!ENTITY ARCHIVENAME "digraphs-1.7.0">
20+
## <!ENTITY COPYRIGHTYEARS "2014-24">
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.6.3",
32-
Date := "13/09/2023", # dd/mm/yyyy format
31+
Version := "1.7.0",
32+
Date := "14/02/2024", # dd/mm/yyyy format
3333
License := "GPL-3.0-or-later",
3434
ArchiveFormats := ".tar.gz",
3535

@@ -91,6 +91,12 @@ Persons := [
9191
IsAuthor := false,
9292
IsMaintainer := false),
9393

94+
rec(
95+
LastName := "Chowdhury",
96+
FirstNames := "Raiyan",
97+
IsAuthor := false,
98+
IsMaintainer := false),
99+
94100
rec(
95101
LastName := "Cirpons",
96102
FirstNames := "Reinis",
@@ -234,6 +240,14 @@ Persons := [
234240
Place := "St Andrews",
235241
Institution := "University of St Andrews"),
236242

243+
rec(
244+
LastName := "Orlitzky",
245+
FirstNames := "Michael",
246+
IsAuthor := false,
247+
IsMaintainer := false,
248+
Email := "[email protected]",
249+
WWWHome := "https://michael.orlitzky.com/"),
250+
237251
rec(
238252
LastName := "Pfeiffer",
239253
FirstNames := "Markus",

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-23 James D. Mitchell
4+
#Y Copyright (C) 2015-24 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.7.0 - 14/02/2024
1112
release 1.6.3 - 13/09/2023
1213
release 1.6.2 - 05/04/2023
1314
release 1.6.1 - 06/12/2022

release.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[authors]
2-
expired_emails = ["[email protected]", "[email protected]"]
2+
33
author_files = ["PackageInfo.g"]
4-
ignore = ["convert-repo"]
4+
ignore = ["convert-repo", "dependabot"]

0 commit comments

Comments
 (0)