Skip to content

Commit c6ec857

Browse files
Update version numbers etc for v1.2.0
1 parent 063023f commit c6ec857

File tree

5 files changed

+27
-5
lines changed

5 files changed

+27
-5
lines changed

.VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.2
1+
1.2.0

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ Torpey, Wilf A. Wilson et al.
44

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

7+
## Version 1.2.0 (released 27/03/2020)
8+
9+
This is a minor release adding some new features to Digraphs, principally
10+
functionality relating to computing matchings by Reinis Ciprons, and an
11+
implementation of Dijkstra's algorithm for shortest paths by
12+
[Markus Pfeiffer][] and [Maria Tsalakou][], and methods for producing a concise
13+
string representation of a digraph by Murray Whyte.
14+
715
## Version 1.1.2 (released 16/03/2020)
816

917
This is a minor release adding the new configuration flag
@@ -739,5 +747,6 @@ Pre-release version that was not made publicly available.
739747
[Julius Jonusas]: http://julius.jonusas.work
740748
[Jan De Beule]: http://homepages.vub.ac.be/~jdbeule
741749
[Markus Pfeiffer]: https://www.morphism.de/~markusp
750+
[Maria Tsalakou]: https://mariatsalakou.github.io
742751
[Chris Jefferson]: https://caj.host.cs.st-andrews.ac.uk
743752
[bliss]: http://www.tcs.hut.fi/Software/bliss/

PackageInfo.g

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
##
1010

1111
## <#GAPDoc Label="PKGVERSIONDATA">
12-
## <!ENTITY VERSION "1.1.2">
12+
## <!ENTITY VERSION "1.2.0">
1313
## <!ENTITY GAPVERS "4.9.0">
1414
## <!ENTITY GRAPEVERS "4.8.1">
1515
## <!ENTITY IOVERS "4.5.1">
1616
## <!ENTITY ORBVERS "4.8.2">
17-
## <!ENTITY ARCHIVENAME "digraphs-1.1.2">
17+
## <!ENTITY ARCHIVENAME "digraphs-1.2.0">
1818
## <!ENTITY COPYRIGHTYEARS "2014-20">
1919
## <#/GAPDoc>
2020

@@ -26,8 +26,8 @@ _STANDREWSCS := Concatenation(["Jack Cole Building, North Haugh, ",
2626
SetPackageInfo(rec(
2727
PackageName := "Digraphs",
2828
Subtitle := "Graphs, digraphs, and multidigraphs in GAP",
29-
Version := "1.2.0dev",
30-
Date := "16/03/2020", # dd/mm/yyyy format
29+
Version := "1.2.0",
30+
Date := "27/03/2020", # dd/mm/yyyy format
3131
License := "GPL-3.0-or-later",
3232
ArchiveFormats := ".tar.gz",
3333

@@ -177,6 +177,17 @@ Persons := [
177177
Place := "St Andrews",
178178
Institution := "University of St Andrews"),
179179

180+
rec(
181+
LastName := "Tsalakou",
182+
FirstNames := "Maria",
183+
IsAuthor := true,
184+
IsMaintainer := false,
185+
Email := "mt200@st-andrews.ac.uk",
186+
WWWHome := "https://mariatsalakou.github.io/",
187+
PostalAddress := _STANDREWSMATHS,
188+
Place := "St Andrews",
189+
Institution := "University of St Andrews"),
190+
180191
rec(
181192
LastName := "Whyte",
182193
FirstNames := "Murray",

VERSIONS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#############################################################################
99
##
1010

11+
release 1.2.0 - 27/03/2020
1112
release 1.1.2 - 16/03/2020
1213
release 1.1.1 - 29/01/2020
1314
release 1.1.0 - 25/01/2020

doc/z-chap0.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
<Item>Markus Pfeiffer,</Item>
2626
<Item>Chris Russell,</Item>
2727
<Item>Finn Smith, and</Item>
28+
<Item>Maria Tsalakou,</Item>
2829
<Item>Murray Whyte.</Item>
2930
</List>
3031

0 commit comments

Comments
 (0)