Skip to content

Commit

Permalink
version info, ChangeLog
Browse files Browse the repository at this point in the history
  • Loading branch information
egri-nagy committed Sep 3, 2022
1 parent 44ab794 commit ff7deb8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.9.4
Release for GAP 4.12.0. Semigroups introduced RandomWord, so it is removed from SgpDec.
0.9.3
The star state was added previously to explicitly represent the situation where the cascade action 'jumps over' some levels. However, the extra states unnecessarily increase the size of the component state sets, leading to bigger decompositions. This release removes the star state and uses the constant 1 map as the default component action. Thus, the decompositions will be smaller.
0.9.2
Making FL conversion functions polymorphic, so they can either take an FLCascadeGroup for convenience, or a list of transversals if obtaining a decompositions (lifting the generators) is not feasible.
0.9.1
Expand Down
16 changes: 8 additions & 8 deletions PackageInfo.g
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## <#GAPDoc Label="PKGVERSIONDATA">
## <!ENTITY VERSION "0.9.4-dev">
## <!ENTITY COPYRIGHTYEARS "2008-2021">
## <!ENTITY VERSION "0.9.4">
## <!ENTITY COPYRIGHTYEARS "2008-2022">
## <#/GAPDoc>

SetPackageInfo(rec(
Expand All @@ -9,9 +9,9 @@ PackageName := "SgpDec",

Subtitle := "Hierarchical Coordinatizations of Finite Groups and Semigroups",

Version := "0.9.4-dev",
Version := "0.9.4",

Date := "05/08/2019", # dd/mm/yyyy format
Date := "03/09/2022", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand Down Expand Up @@ -93,10 +93,10 @@ PackageDoc := rec(


Dependencies := rec(
GAP := ">= 4.10.0",
NeededOtherPackages := [["GAPDoc", ">=1.6.2"], #StringPrint
["orb", ">=4.8.1"], #hashtable functionalities
["semigroups", ">=3.0.20"]
GAP := ">= 4.12.0",
NeededOtherPackages := [["GAPDoc", ">=1.6.6"], #StringPrint
["orb", ">=4.8.5"], #hashtable functionalities
["semigroups", ">=5.0.2"]
],
SuggestedOtherPackages := [],#["viz", ">=0.2"]], #Draw, Splash]
ExternalConditions := [ ]
Expand Down

0 comments on commit ff7deb8

Please sign in to comment.