Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release candidate for v5.3.5 #998

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.3.4
5.3.5
1 change: 1 addition & 0 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Stuart Burrell <stuartburrell1994@gmail.com> <stuartburrell@users.noreply.github.com>
Stuart Burrell <stuartburrell1994@gmail.com> stuartburrell <unknown>
Reinis Cirpons <rc234@st-andrews.ac.uk> Reinis Cirpons <43414125+reiniscirpons@users.noreply.github.com>
Reinis Cirpons <rc234@st-andrews.ac.uk> reiniscirpons <rc234@st-andrews.ac.uk>
Tom Conti-Leslie <tom.contileslie@gmail.com> Tom Conti-Leslie <54725378+tomcontileslie@users.noreply.github.com>
Joe Edwards <je53@st-andrews.ac.uk> Joe Edwards <80713360+Joseph-Edwards@users.noreply.github.com>
Luke Elliott <le27@st-andrews.ac.uk> le27 <le27@st-andrews.ac.uk>
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions VERSIONS
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 11 additions & 0 deletions ci/run-gap-testbugfix.g
Original file line number Diff line number Diff line change
Expand Up @@ -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"));
Loading