Skip to content
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 .LIBSEMIGROUPS_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.5.4
3.5.5
2 changes: 1 addition & 1 deletion .VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.6.1
5.6.2
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,28 @@ Copyright © 2011-2026 [James D. Mitchell][] et al.

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

## Version 5.6.2 (released 08/04/2026)

- Gapbind14 clear by @james-d-mitchell in https://github.com/semigroups/Semigroups/pull/1144
- doc: specify full main XML filename by @fingolfin in https://github.com/semigroups/Semigroups/pull/1148
- gapbind14: unconditionally call `__builtin_unreachable` by @james-d-mitchell in https://github.com/semigroups/Semigroups/pull/1150
- Release candidate for v5.6.1 by @james-d-mitchell in https://github.com/semigroups/Semigroups/pull/1146
- Narrow declarations of `Factorization` and `WreathProduct` by @james-d-mitchell in https://github.com/semigroups/Semigroups/pull/1156
- Cherry pick a bunch of commits from main by @james-d-mitchell in https://github.com/semigroups/Semigroups/pull/1164
- ci: don't use BuildPackages.sh directly by @james-d-mitchell in https://github.com/semigroups/Semigroups/pull/1165
- build: override bundled libsemigroups install paths by @jengelh in https://github.com/semigroups/Semigroups/pull/1074
- Change filters for methods to increase their rank by @james-d-mitchell in https://github.com/semigroups/Semigroups/pull/1170
- Codex doc improvements by @james-d-mitchell in https://github.com/semigroups/Semigroups/pull/1166
- Resolve incompatibility with Orb v5.1.0 by @james-d-mitchell in https://github.com/semigroups/Semigroups/pull/1171

## New Contributors

- @jengelh made their first contribution in
https://github.com/semigroups/Semigroups/pull/1074

**Full Changelog**:
https://github.com/semigroups/Semigroups/compare/v5.6.1...v5.6.2

## Version 5.6.1 (released 18/03/2026)

This is a minor release to fix some issues with the release archive for v5.6.0,
Expand Down
11 changes: 9 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.6.1",
Date := "18/03/2026", # dd/mm/yyyy format
Version := "5.6.2",
Date := "08/04/2026", # dd/mm/yyyy format
License := "GPL-3.0-or-later",

ArchiveFormats := ".tar.gz",
Expand Down Expand Up @@ -133,6 +133,13 @@ Persons := [
Place := "Akita, Japan",
Institution := "Akita International University"),

rec(
LastName := "Engelhardt",
FirstNames := "Jan",
IsAuthor := true,
IsMaintainer := false,
Email := "jengelh@inai.de"),

rec(
LastName := "Elliott",
FirstNames := "Luke",
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.6.2 - 08/04/2026
release 5.6.1 - 18/03/2026
release 5.6.0 - 05/03/2026
release 5.5.4 - 29/08/2025
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ channels:
- conda-forge

dependencies:
- libsemigroups==3.5.4
- libsemigroups==3.5.5
2 changes: 1 addition & 1 deletion release.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ expired_emails = ["cr66@st-andrews.ac.uk", "ak316@st-andrews.ac.uk",
"bspiers972@outlook.com", "chinmaya1011@gmail.com",
"hk78@st-andrews.ac.uk", "ty39@st-andrews.ac.uk"]
author_files = ["PackageInfo.g"]
ignore = ["convert-repo", "dependabot"]
ignore = ["convert-repo", "dependabot", "Codex"]
3 changes: 1 addition & 2 deletions tst/standard/congruences/congwordgraph.tst
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,7 @@ gap> EquivalenceRelationPartitionWithSingletons(C);
[ [ <identity ...>, a, b, b*a ] ]
gap> EquivalenceRelationPartition(C);
[ [ <identity ...>, a, b, b*a ] ]
gap> GeneratingPairsOfLeftMagmaCongruence(C);
[ [ <identity ...>, a ], [ <identity ...>, b ] ]
gap> GeneratingPairsOfLeftMagmaCongruence(C);;
gap> LeftSemigroupCongruence(S, last) = C;
true
gap> ForAll(last2, x -> x in C);
Expand Down
Loading