From 08e1659bdfa6540109716ae4a694a8c9ae0c5586 Mon Sep 17 00:00:00 2001 From: "James D. Mitchell" Date: Wed, 14 Feb 2024 10:05:33 +0000 Subject: [PATCH 1/2] Remove failing test file from gap bugfix in 32-bit --- ci/run-gap-testbugfix.g | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ci/run-gap-testbugfix.g b/ci/run-gap-testbugfix.g index b94bd5418..b27ff418a 100644 --- a/ci/run-gap-testbugfix.g +++ b/ci/run-gap-testbugfix.g @@ -6,4 +6,15 @@ for f in files_to_delete do Exec(Concatenation("rm -f ", f)); fi; od; + +if GAPInfo.BytesPerVariable < 8 then + files_to_delete_32_bit := ["testbugfix/2024-01-25-MaxAbQuot.tst"]; # too much memory + for f in files_to_delete_32_bit do + f := Filename(DirectoriesLibrary("tst"), f); + if f <> fail then + Exec(Concatenation("rm -f ", f)); + fi; + od; +fi; + Read(Filename(DirectoriesLibrary("tst"), "testbugfix.g")); From ef066f931e050ec6583ba5064cf6a16cf08eabac Mon Sep 17 00:00:00 2001 From: "James D. Mitchell" Date: Sat, 10 Feb 2024 12:10:07 +0000 Subject: [PATCH 2/2] Update version numbers etc for v5.3.5 --- .VERSION | 2 +- .mailmap | 1 + CHANGELOG.md | 7 +++++++ PackageInfo.g | 4 ++-- VERSIONS | 1 + 5 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.VERSION b/.VERSION index e0a61e6a8..e61ecd12d 100644 --- a/.VERSION +++ b/.VERSION @@ -1 +1 @@ -5.3.4 +5.3.5 diff --git a/.mailmap b/.mailmap index 54f8de2a7..ae17a11e6 100644 --- a/.mailmap +++ b/.mailmap @@ -1,6 +1,7 @@ Stuart Burrell Stuart Burrell stuartburrell 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> Joe Edwards Joe Edwards <80713360+Joseph-Edwards@users.noreply.github.com> Luke Elliott le27 diff --git a/CHANGELOG.md b/CHANGELOG.md index dc5c9e14b..39da28370 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ Copyright © 2011-2024 [James D. Mitchell][] et al. Licensing information can be found in the `LICENSE` file. +### Version 5.3.5 (released 14/02/2024) + +This is a minor release fixing an issue in the kernel extension (reported by +Michael Orlitzky in Issue #996), with some further changes for compatibility +with GAP (by Max Horn), and fixing a bug in `IrredundantGeneratingSubset` which +gave an error for monogenic semigroups (by Reinis Cirpons). + ### Version 5.3.4 (released 24/01/2024) This is a minor release that fixes some issue in the build system, applies some diff --git a/PackageInfo.g b/PackageInfo.g index 1465f2c63..43f52f5bb 100644 --- a/PackageInfo.g +++ b/PackageInfo.g @@ -34,8 +34,8 @@ _STANDREWSCS := Concatenation(["Jack Cole Building, North Haugh, ", SetPackageInfo(rec( PackageName := "Semigroups", Subtitle := "A package for semigroups and monoids", -Version := "5.3.4", -Date := "24/01/2024", # dd/mm/yyyy format +Version := "5.3.5", +Date := "14/02/2024", # dd/mm/yyyy format License := "GPL-3.0-or-later", ArchiveFormats := ".tar.gz", diff --git a/VERSIONS b/VERSIONS index c0acf1d89..8eb356d1e 100644 --- a/VERSIONS +++ b/VERSIONS @@ -9,6 +9,7 @@ ## ## +release 5.3.5 - 14/02/2024 release 5.3.4 - 24/01/2024 release 5.3.3 - 05/01/2024 release 5.3.2 - 07/10/2023