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 v5.4.0 #1033

Closed
wants to merge 9 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.7
5.4.0
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- uses: actions/checkout@v4
- name: "Install dependencies (macOS only!)"
if: ${{ runner.os == 'macOS' }}
run: brew install automake
run: brew install automake libtool
# Setup ccache, to speed up repeated compilation of the same binaries
# (i.e., GAP and the packages)
- name: "Setup ccache"
Expand Down
3 changes: 3 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Joseph Edwards <jde1@st-andrews.ac.uk> Joe Edwards <80713360+Joseph-Edwards@user
Joseph Edwards <jde1@st-andrews.ac.uk> Joseph Edwards <josephdavidedwards@gmail.com>
Luke Elliott <le27@st-andrews.ac.uk> le27 <le27@st-andrews.ac.uk>
Fernando Flores Brito <ffloresbrito@gmail.com> Fernando Flores Brito <ffb3@st-andrews.ac.uk>
Tillman Froehlich <trf1@st-andrews.ac.uk> Tillman <47321884+awesometillman@users.noreply.github.com>
Nick Ham <nicholas.charles.ham@gmail.com>
Robert Hancock <hancock@informatik.uni-heidelberg.de> Robert Hancock <unknown>
Max Horn <horn@mathematik.uni-kl.de> Max Horn <max@quendi.de>
Expand All @@ -19,6 +20,7 @@ Olexandr Konovalov <obk1@st-andrews.ac.uk> Alexander Konovalov <alex-konovalov@u
Olexandr Konovalov <obk1@st-andrews.ac.uk> Alexander Konovalov <alexk@mcs.st-andrews.ac.uk>
Olexandr Konovalov <obk1@st-andrews.ac.uk> Olexandr Konovalov <5751387+olexandr-konovalov@users.noreply.github.com>
Artemis Konstantinidi <ak316@st-andrews.ac.uk> artemiskonst <97620468+artemiskonst@users.noreply.github.com>
Hyeokjun Kwon <hk78@st-andrews.ac.uk> Hyeokjun Kwon <rnjsgurwns27@gmail.com>
James Mitchell <jdm3@st-andrews.ac.uk> <jdm3@st-and.ac.uk>
James Mitchell <jdm3@st-andrews.ac.uk> <jdm3@st-andrews.ac.uk>
James Mitchell <jdm3@st-andrews.ac.uk> <jenkyfunds@gmail.com>
Expand All @@ -39,6 +41,7 @@ Chris Wensley <cdwensley.maths@btinternet.com> cdwensley <cdwensley.maths@btinte
Murray Whyte <mw231@st-andrews.ac.uk> Murray Whyte <42549861+MTWhyte@users.noreply.github.com>
Wilf Wilson <gap@wilf-wilson.net> Wilf Wilson <wilf@wilf-wilson.net>
Wilf Wilson <gap@wilf-wilson.net> wilfwilson <wilf@wilf-wilson.net>
Tianrun Yang <ty39@st-andrews.ac.uk> Tianrun Yang <117233646+Tianrun-Y@users.noreply.github.com>
Michael Young <mct25@st-andrews.ac.uk> <mct25@st-andrews.ac.uk>
Michael Young <mct25@st-andrews.ac.uk> <mtorpey@mtorpey-debtest>
Michael Young <mct25@st-andrews.ac.uk> mct25 <unknown>
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ Copyright © 2011-2024 [James D. Mitchell][] et al.

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

## Version 5.4.0 (released 27/08/2024)

This is a fairly minor release that includes a single new feature (constructors
for free semilattices), and a number of minor bug fixes, and other
improvements.

## Version 5.3.7 (released 11/03/2024)

This is a minor release with some changes for compatibility with GAP.
Expand Down
24 changes: 22 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.7",
Date := "11/03/2024", # dd/mm/yyyy format
Version := "5.4.0",
Date := "27/08/2024", # dd/mm/yyyy format
License := "GPL-3.0-or-later",

ArchiveFormats := ".tar.gz",
Expand Down Expand Up @@ -152,6 +152,13 @@ Persons := [
Email := "ffloresbrito@gmail.com",
WWWHome := "https://github.com/ffloresbrito"),

rec(
LastName := "Froehlich",
FirstNames := "Tillman",
IsAuthor := true,
IsMaintainer := false,
Email := "trf1@st-andrews.ac.uk"),

rec(
LastName := "Ham",
FirstNames := "Nick",
Expand Down Expand Up @@ -206,6 +213,12 @@ Persons := [
WWWHome := "http://julius.jonusas.work",
Place := "Brussels, Belgium"),

rec(LastName := "Kwon",
FirstNames := "Hyeokjun",
IsAuthor := false,
IsMaintainer := false,
Email := "hk78@st-andrews.ac.uk"),

rec(
LastName := "Nagpal",
FirstNames := "Chinmaya",
Expand Down Expand Up @@ -344,6 +357,13 @@ Persons := [
Email := "gap@wilf-wilson.net",
WWWHome := "https://wilf.me"),

rec(
LastName := "Yang",
FirstNames := "Tianrun",
IsAuthor := true,
IsMaintainer := false,
Email := "ty39@st-andrews.ac.uk"),

rec(
LastName := "Young",
FirstNames := "Michael",
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.4.0 - 27/08/2024
release 5.3.7 - 11/03/2024
release 5.3.6 - 19/02/2024
release 5.3.5 - 14/02/2024
Expand Down
2 changes: 1 addition & 1 deletion gap/libsemigroups/cong.gi
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ function(cong, elm)
elif IsFpSemigroup(Range(cong))
or (HasIsFreeSemigroup(Range(cong)) and IsFreeSemigroup(Range(cong)))
or IsFpMonoid(Range(cong))
or (HasIsFreeSemigroup(Range(cong)) and IsFreeMonoid(Range(cong)))
or (HasIsFreeMonoid(Range(cong)) and IsFreeMonoid(Range(cong)))
or IsQuotientSemigroup(Range(cong)) then
part := EquivalenceRelationPartition(cong);
pos := PositionProperty(part, l -> [elm, l[1]] in cong);
Expand Down
1 change: 0 additions & 1 deletion read.g
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
ReadPackage("semigroups", "gap/tools/display.gi");
ReadPackage("semigroups", "gap/tools/io.gi");
ReadPackage("semigroups", "gap/tools/utils.gi");
ReadPackage("semigroups", "gap/tools/enums.gi");
ReadPackage("semigroups", "gap/tools/iterators.gi");

ReadPackage("semigroups", "gap/elements/star.gi");
Expand Down
Loading