From e777df0185ab32c6df9bffd61396014291fe3465 Mon Sep 17 00:00:00 2001 From: "James D. Mitchell" Date: Wed, 14 Feb 2024 16:32:22 +0000 Subject: [PATCH] Update versions numbers etc for v1.7.0 --- .VERSION | 2 +- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++++ PackageInfo.g | 26 ++++++++++++++++++++------ VERSIONS | 3 ++- release.toml | 4 ++-- 5 files changed, 59 insertions(+), 10 deletions(-) diff --git a/.VERSION b/.VERSION index 266146b87..bd8bf882d 100644 --- a/.VERSION +++ b/.VERSION @@ -1 +1 @@ -1.6.3 +1.7.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index a6c01f276..846e33db9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,40 @@ Wilf A. Wilson, Michael Young et al. Licensing information can be found in the `LICENSE` file. +## Version 1.7.0 (released 14/02/2024) + +This is a minor release with some new features, and some other improvements in +code quality. + +## What's Changed +* Change test that relies on xpdf not being installed by @mtorpey in + https://github.com/digraphs/Digraphs/pull/578 +* DigraphAbsorptionProbabilities by @mtorpey in + https://github.com/digraphs/Digraphs/pull/548 +* Fix test files: strings and unbinds by @mtorpey in + https://github.com/digraphs/Digraphs/pull/579 +* Add immediate methods for connected and strongly connected graphs by @mtorpey + in https://github.com/digraphs/Digraphs/pull/583 +* kernel: fix mem leaks for permutations allocated but not freed. by + @james-d-mitchell in https://github.com/digraphs/Digraphs/pull/589 +* Remove references to bin/gap.sh by @fingolfin in + https://github.com/digraphs/Digraphs/pull/597 +* Fix prototype warnings by @fingolfin in + https://github.com/digraphs/Digraphs/pull/598 +* Added EdgeWeightedDigraph by @RaiyanC in + https://github.com/digraphs/Digraphs/pull/575 +* Add AbsorptionExpectedSteps by @mtorpey in + https://github.com/digraphs/Digraphs/pull/585 +* Fix a typo by @fingolfin in https://github.com/digraphs/Digraphs/pull/608 +* configure.ac: fix bashism in string equality test by @orlitzky in + https://github.com/digraphs/Digraphs/pull/613 + +## New Contributors +* @RaiyanC made their first contribution in https://github.com/digraphs/Digraphs/pull/575 +* @orlitzky made their first contribution in https://github.com/digraphs/Digraphs/pull/613 + +**Full Changelog**: https://github.com/digraphs/Digraphs/compare/v1.6.3...v1.7.0 + ## Version 1.6.3 (released 13/09/2023) This is a minor release with some bug fixes, and other issues resolved: diff --git a/PackageInfo.g b/PackageInfo.g index 90e36668d..a386c0c6c 100644 --- a/PackageInfo.g +++ b/PackageInfo.g @@ -1,7 +1,7 @@ ############################################################################# ## ## PackageInfo.g -## Copyright (C) 2015-23 James D. Mitchell +## Copyright (C) 2015-24 James D. Mitchell ## ## Licensing information can be found in the README.md file of this package. ## @@ -9,15 +9,15 @@ ## ## <#GAPDoc Label="PKGVERSIONDATA"> -## +## ## ## ## ## ## ## -## -## +## +## ## <#/GAPDoc> _STANDREWSMATHS := Concatenation(["Mathematical Institute, North Haugh, ", @@ -28,8 +28,8 @@ _STANDREWSCS := Concatenation(["Jack Cole Building, North Haugh, ", SetPackageInfo(rec( PackageName := "Digraphs", Subtitle := "Graphs, digraphs, and multidigraphs in GAP", -Version := "1.6.3", -Date := "13/09/2023", # dd/mm/yyyy format +Version := "1.7.0", +Date := "14/02/2024", # dd/mm/yyyy format License := "GPL-3.0-or-later", ArchiveFormats := ".tar.gz", @@ -91,6 +91,12 @@ Persons := [ IsAuthor := false, IsMaintainer := false), + rec( + LastName := "Chowdhury", + FirstNames := "Raiyan", + IsAuthor := false, + IsMaintainer := false), + rec( LastName := "Cirpons", FirstNames := "Reinis", @@ -234,6 +240,14 @@ Persons := [ Place := "St Andrews", Institution := "University of St Andrews"), + rec( + LastName := "Orlitzky", + FirstNames := "Michael", + IsAuthor := false, + IsMaintainer := false, + Email := "michael@orlitzky.com", + WWWHome := "https://michael.orlitzky.com/"), + rec( LastName := "Pfeiffer", FirstNames := "Markus", diff --git a/VERSIONS b/VERSIONS index 7373bd65e..6dad77615 100644 --- a/VERSIONS +++ b/VERSIONS @@ -1,13 +1,14 @@ ############################################################################# ## #W VERSIONS -#Y Copyright (C) 2015-23 James D. Mitchell +#Y Copyright (C) 2015-24 James D. Mitchell ## ## Licensing information can be found in the README.md file of this package. ## ############################################################################# ## +release 1.7.0 - 14/02/2024 release 1.6.3 - 13/09/2023 release 1.6.2 - 05/04/2023 release 1.6.1 - 06/12/2022 diff --git a/release.toml b/release.toml index 36d272816..2caca7bb4 100644 --- a/release.toml +++ b/release.toml @@ -1,4 +1,4 @@ [authors] -expired_emails = ["cr66@st-andrews.ac.uk", "GrahamCampbell@users.noreply.github.com"] +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"] +ignore = ["convert-repo", "dependabot"]