diff --git a/.VERSION b/.VERSION index 27f9cd322..f8e233b27 100644 --- a/.VERSION +++ b/.VERSION @@ -1 +1 @@ -1.8.0 +1.9.0 diff --git a/.gitignore b/.gitignore index 23d7379ad..5acbd1b87 100644 --- a/.gitignore +++ b/.gitignore @@ -53,6 +53,7 @@ depcomp digraphs-config.h digraphs-lib doc/_*.xml +doc/main.xml gen/ gh-pages/ main.xml diff --git a/.mailmap b/.mailmap index 8d5973f0f..706b015f5 100644 --- a/.mailmap +++ b/.mailmap @@ -2,6 +2,7 @@ Marina Anagnostopoulou-Merkouri marinaanagno <66735004+ Finn Buck Finnegan Buck <61651823+finnbuck@users.noreply.github.com> Stuart Burrell Stuart Burrell Reinis Cirpons reiniscirpons <43414125+reiniscirpons@users.noreply.github.com> +Reinis Cirpons Reinis Cirpons <43414125+reiniscirpons@users.noreply.github.com> Reinis Cirpons reiniscirpons Tom Conti-Leslie Tom Conti-Leslie <54725378+tomcontileslie@users.noreply.github.com> Tom Conti-Leslie Tom Conti-Leslie @@ -33,6 +34,7 @@ Matthew Pancer M Pancer <115101659+mpan322@users.norepl Daniel Pointon <30954660+DanielPointon@users.noreply.github.com> Markus Pfeiffer Markus Pfeiffer Markus Pfeiffer Markus Pfeiffer +Markus Pfeiffer Markus Pfeiffer Lea Racine LRacine <35891709+LRacine@users.noreply.github.com> Lea Racine Lea Racine <35891709+LRacine@users.noreply.github.com> Lea Racine Lea Racine @@ -45,4 +47,7 @@ Finn Smith flsmith Maria Tsalakou Maria Tsalakou <55688065+mariatsalakou@users.noreply.github.com> Murray Whyte MTWhyte <42549861+MTWhyte@users.noreply.github.com> Murray Whyte Murray Whyte <42549861+MTWhyte@users.noreply.github.com> +Meike Weiss MeikeWeiss <82507837+MeikeWeiss@users.noreply.github.com> +Meike Weiss Meike Weiß Wilf Wilson Wilf Wilson + ", diff --git a/CHANGELOG.md b/CHANGELOG.md index b709d00f2..ad21c01a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,53 @@ Wilf A. Wilson, Michael Young et al. Licensing information can be found in the `LICENSE` file. +## Version 1.9.0 (released 06/09/2024) + +## What's Changed +* Update my web-address by @markuspf in +https://github.com/digraphs/Digraphs/pull/674 +* Fix off by one error by @james-d-mitchell in +https://github.com/digraphs/Digraphs/pull/677 +* Resolve issue #676 by @james-d-mitchell in +https://github.com/digraphs/Digraphs/pull/678 +* Add hash function for digraphs by @reiniscirpons in +https://github.com/digraphs/Digraphs/pull/675 +* kernel: use GAP's GVAR_FUNC macro by @fingolfin in +https://github.com/digraphs/Digraphs/pull/682 +* Add DigraphAllChordlessCycles by @MeikeWeiss in +https://github.com/digraphs/Digraphs/pull/679 +* Add DomainForAction mock for actions on digraphs by @reiniscirpons in +https://github.com/digraphs/Digraphs/pull/686 +* doc: start using autodoc by @james-d-mitchell in +https://github.com/digraphs/Digraphs/pull/684 +* Make Orb use digraph hashes by @reiniscirpons in +https://github.com/digraphs/Digraphs/pull/687 +* Fix startup bug by @james-d-mitchell in +https://github.com/digraphs/Digraphs/pull/688 +* Add comment to remove rank by @reiniscirpons in +https://github.com/digraphs/Digraphs/pull/692 +* Lint for new version of gaplint by @james-d-mitchell in +https://github.com/digraphs/Digraphs/pull/691 +* Add `SubdigraphsMonomorphisms` by @james-d-mitchell in +https://github.com/digraphs/Digraphs/pull/690 +* Added method AllUndirectedSimpleCircuits by @MeikeWeiss in +https://github.com/digraphs/Digraphs/pull/689 +* Update for recent gaplint by @james-d-mitchell in +https://github.com/digraphs/Digraphs/pull/693 +* Add a test for issue #676 by @wilfwilson in +https://github.com/digraphs/Digraphs/pull/695 +* Fix edge placement in HanoiGraph by @Joseph-Edwards in +https://github.com/digraphs/Digraphs/pull/699 +* Fix planarity by @Joseph-Edwards in +https://github.com/digraphs/Digraphs/pull/696 +* Clarify homomorphisms finder with specified image by @james-d-mitchell in +https://github.com/digraphs/Digraphs/pull/700 + +## New Contributors +* @MeikeWeiss made their first contribution in https://github.com/digraphs/Digraphs/pull/679 + +**Full Changelog**: https://github.com/digraphs/Digraphs/compare/v1.8.0...v1.9.0 + ## Version 1.8.0 (released 27/08/2024) This release contains several improvements and bug fixes: diff --git a/PackageInfo.g b/PackageInfo.g index f2096d43b..d990dad07 100644 --- a/PackageInfo.g +++ b/PackageInfo.g @@ -38,8 +38,8 @@ fi; SetPackageInfo(rec( PackageName := "Digraphs", Subtitle := "Graphs, digraphs, and multidigraphs in GAP", -Version := "1.8.0", -Date := "27/08/2024", # dd/mm/yyyy format +Version := "1.9.0", +Date := "06/09/2024", # dd/mm/yyyy format License := "GPL-3.0-or-later", ArchiveFormats := ".tar.gz", @@ -384,6 +384,18 @@ Persons := [ Place := "St Andrews", Institution := "University of St Andrews"), + rec( + LastName := "Weiss", + FirstNames := "Meike", + IsAuthor := true, + IsMaintainer := false, + Email := "weiss@art.rwth-aachen.de", + WWWHome := "https://bit.ly/4e6pUeP", + PostalAddress := Concatenation("Chair of Algebra and Representation ", + "Theory, Pontdriesch 10-16, 52062 Aachen"), + Place := "Aachen", + Institution := "RWTH-Aachen University"), + rec( LastName := "Whyte", FirstNames := "Murray", diff --git a/VERSIONS b/VERSIONS index 9e2ff2878..7151b236e 100644 --- a/VERSIONS +++ b/VERSIONS @@ -8,6 +8,7 @@ ############################################################################# ## +release 1.9.0 - 06/09/2024 release 1.8.0 - 27/08/2024 release 1.7.1 - 19/02/2024 release 1.7.0 - 14/02/2024 diff --git a/release.toml b/release.toml index 2caca7bb4..d9170479e 100644 --- a/release.toml +++ b/release.toml @@ -1,4 +1,4 @@ [authors] expired_emails = ["cr66@st-andrews.ac.uk", "GrahamCampbell@users.noreply.github.com", "47450781+RaiyanC@users.noreply.github.com"] author_files = ["PackageInfo.g"] -ignore = ["convert-repo", "dependabot"] +ignore = ["convert-repo", "dependabot", "Luke"]