Skip to content
Merged
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
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ This file describes changes in the AutoDoc package.
slips by GAPDoc; so it caused no problems in practice, but the resulting XML
was strictly speaking invalid)
- Predefine entities `VERSION`, `RELEASEYEAR`, `RELEASEDATE`
- Allow specifying scaffold settings *simultaneously* in `PackageInfo.g`
and `makedoc.g`; the records are merged, with values from `makedoc.g`
taken precedence if e.g. the same entity is defined in both places

2025.10.16
- Make handling `Date` in `PackageInfo.g` more strict (previously some
Expand Down
2 changes: 1 addition & 1 deletion gap/Magic.gi
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ function( arg )
if IsBound(scaffold) and IsBound( pkginfo.AutoDoc ) then
for key in RecNames( pkginfo.AutoDoc ) do
if IsBound( scaffold.(key) ) then
Info(InfoAutoDoc, 1, "WARNING: ", key, " specified in both PackageInfo.AutoDoc and opt.scaffold");
AUTODOC_MergeRecords( scaffold.(key), pkginfo.AutoDoc.(key) );
else
scaffold.(key) := pkginfo.AutoDoc.(key);
fi;
Expand Down