Skip to content

Commit

Permalink
version 1.66 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cdwensley committed May 29, 2019
1 parent 284801f commit 7734a8e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGES to the 'groupoids' package

## Version 1.65dev for GAP 4.10.1 (00/04/19)
## Version 1.66 for GAP 4.10.1 (29/05/19)

* (18/04/19) reorganised all .tst files into /tst/manual/ and /tst/extra/
* (08/04/19) AutomorphismGroupoidOfGroupoid for homogeneous union
Expand Down
27 changes: 14 additions & 13 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ SetPackageInfo( rec(

PackageName := "groupoids",
Subtitle := "Calculations with finite groupoids and their homomorphisms",
Version := "1.65dev",
Date := "13/04/2019", # dd/mm/yyyy format
Version := "1.66",
Date := "29/05/2019", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand All @@ -32,15 +32,15 @@ Persons := [
Email := "[email protected]",
WWWHome := "http://pages.bangor.ac.uk/~mas023/",
PostalAddress := Concatenation( [
"Dr. C.D. Wensley\n",
"School of Computer Science\n",
"Bangor University\n",
"Dean Street\n",
"Bangor\n",
"Gwynedd LL57 1UT\n",
"UK"] ),
"Dr. C.D. Wensley\n",
"School of Computer Science and Electronic Engineering\n",
"Bangor University\n",
"Dean Street\n",
"Bangor\n",
"Gwynedd LL57 1UT\n",
"UK"] ),
Place := "Llanfairfechan",
Institution := "University of Wales, Bangor"
Institution := "Bangor University"
)
],

Expand Down Expand Up @@ -82,10 +82,11 @@ PackageDoc := rec(
),

Dependencies := rec(
GAP := ">=4.10.0",
NeededOtherPackages := [ [ "GAPDoc", ">= 1.6.2" ],
GAP := ">=4.10.1",
NeededOtherPackages := [ [ "AutoDoc", ">= 2019.02.22" ],
[ "GAPDoc", ">= 1.6.2" ],
[ "fga", ">= 1.4.0" ] ],
SuggestedOtherPackages := [ [ "semigroups", ">= 3.0.20" ] ],
SuggestedOtherPackages := [ [ "semigroups", ">= 3.1.1" ] ],
ExternalConditions := [ ]
),

Expand Down
15 changes: 7 additions & 8 deletions makedoc.g
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,22 @@ LoadPackage( "groupoids" );
LoadPackage( "AutoDoc" );

AutoDoc(rec(
gapdoc := rec(
LaTeXOptions := rec( EarlyExtraPreamble := """
\usepackage[all]{xy}
\newcommand{\Aut} {\mathrm{Aut}}
\newcommand{\AUT} {\mathrm{AUT}}
\newcommand{\Inn} {\mathrm{Inn}}
""" )),
scaffold := rec(
includes := [ "intro.xml", "mwo.xml", "mwohom.xml",
"gpd.xml", "gpdhom.xml", "ggraph.xml",
"tecnotes.xml", "history.xml"
],
bib := "bib.xml",
gapdoc_latex_options := rec( EarlyExtraPreamble := """
\usepackage[all]{xy}
\newcommand{\Aut} {\mathrm{Aut}}
\newcommand{\AUT} {\mathrm{AUT}}
\newcommand{\Inn} {\mathrm{Inn}}
""" ),
entities := rec(
AutoDoc := "<Package>AutoDoc</Package>",
XMod := "<Package>XMod</Package>"
)
)
));

QUIT;

0 comments on commit 7734a8e

Please sign in to comment.