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

Update version numbers etc for v5.3.0 #956

Closed
wants to merge 1 commit 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.2.1
5.3.0
1 change: 1 addition & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ James Mitchell <[email protected]> James Mitchell <[email protected]
James Mitchell <[email protected]> james-d-mitchell <[email protected]>
James Mitchell <[email protected]> jamesm <unknown>
Dima Pasechnik <[email protected]> Dima Pasechnik <[email protected]>
Dima Pasechnik <[email protected]> Dima Pasechnik <[email protected]>
Markus Pfeiffer <[email protected]> Markus Pfeiffer <[email protected]>
Markus Pfeiffer <[email protected]> Markus Pfeiffer <[email protected]>
Chris Russell <[email protected]> ChristopherRussell <[email protected]>
Expand Down
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,54 @@ Copyright © 2011-2023 [James D. Mitchell][] et al.

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

### Version 5.3.0 (released 18/09/2023)

This release contains a fairly large number of changes, fixes, and
improvements. The biggest changes/new features in this release are:

* The build system has been completely updated by @fingolfin and @dimapase:
- Convert buildsystem to use Makefile.gappkg instead of automake by @fingolfin
in https://github.com/semigroups/Semigroups/pull/902
- Use the C++ compiler to link semigroups.so by @fingolfin in
https://github.com/semigroups/Semigroups/pull/942
- Work around autoconf 2.69 bugs by @fingolfin in
https://github.com/semigroups/Semigroups/pull/947
- set rpath for external libsemigroups by @dimpase in
https://github.com/semigroups/Semigroups/pull/954
- buildsystem: sane warning if not using gmake by @james-d-mitchell in
https://github.com/semigroups/Semigroups/pull/955
* Some updates to improve the performance of `LatticeOfCongruences` and friends
by @james-d-mitchell in https://github.com/semigroups/Semigroups/pull/884
* Add `GreensLeftMultipliers` and related by @james-d-mitchell in
https://github.com/semigroups/Semigroups/pull/925

The following bugs were fixed and/or issues resolved:

* Use same URL as in my other packages by @olexandr-konovalov in
https://github.com/semigroups/Semigroups/pull/907
* Fix a few typos inn the doc by @fingolfin in
https://github.com/semigroups/Semigroups/pull/913
* Increase required version of Digraphs and remove some redundant code by
@james-d-mitchell in https://github.com/semigroups/Semigroups/pull/921
* greens: fix `HClassReps(LClass)` for acting semigroups by @james-d-mitchell
in https://github.com/semigroups/Semigroups/pull/927
* greens: fix bug in `RightGreensMultiplier` for acting semigroups by
@james-d-mitchell in https://github.com/semigroups/Semigroups/pull/930
* congsemigraph: add `\=` method by @james-d-mitchell in
https://github.com/semigroups/Semigroups/pull/933
* greens: fix `RhoOrbStabChain(DClass)` by @james-d-mitchell in
https://github.com/semigroups/Semigroups/pull/932
* doc: remove empty xml files by @james-d-mitchell in
https://github.com/semigroups/Semigroups/pull/934
* Fix a typo that breaks HPCombi support by @fingolfin in
https://github.com/semigroups/Semigroups/pull/941
* typo (ERNEL<-KERNEL) in configure.ac by @dimpase in
https://github.com/semigroups/Semigroups/pull/944
* fix the URL for libsemigroups in README.md by @dimpase in
https://github.com/semigroups/Semigroups/pull/945
* kernel: fix mem leaks by @james-d-mitchell in
https://github.com/semigroups/Semigroups/pull/951

### Version 5.2.1 (released 05/03/2023)

This is a minor release with some changes for compatibility with upcoming
Expand Down
2 changes: 1 addition & 1 deletion PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SetPackageInfo(rec(
PackageName := "Semigroups",
Subtitle := "A package for semigroups and monoids",
Version := "5.2.1",
Date := "05/03/2023", # dd/mm/yyyy format
Date := "18/09/2023", # dd/mm/yyyy format
License := "GPL-3.0-or-later",

ArchiveFormats := ".tar.gz",
Expand Down
3 changes: 2 additions & 1 deletion VERSIONS
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
#############################################################################
##
## VERSIONS
## Copyright (C) 2011-2022 James D. Mitchell
## Copyright (C) 2011-2023 James D. Mitchell
##
## Licensing information can be found in the README file of this package.
##
#############################################################################
##
##

release 5.3.0 - 18/09/2023
release 5.2.1 - 05/03/2023
release 5.2.0 - 01/12/2022
release 5.1.0 - 31/10/2022
Expand Down
Loading