Skip to content

Commit

Permalink
Version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ZachNewbery committed Nov 11, 2022
1 parent fe65d82 commit 4a431af
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "latexgen",
Subtitle := "Automatic LaTeX string generation for common GAP objects",
Version := "0.99",
Version := "1.0",
Date := "11/11/2022", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Expand Down
1 change: 1 addition & 0 deletions doc/latexgen.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<#Include SYSTEM "title.xml">
<TableOfContents/>
<Body>
<#Include SYSTEM "_AutoDocMainFile.xml">
</Body>
<TheIndex/>
</Book>
2 changes: 1 addition & 1 deletion doc/title.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Automatic LaTeX string generation for common &GAP; objects
</Subtitle>
<Version>
0.99
1.0
</Version>
<Author>
Zachariah Newbery<Alt Only="LaTeX"><Br/></Alt>
Expand Down
6 changes: 3 additions & 3 deletions makedoc.g
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#
# This file is a script which compiles the package manual.
#
if fail = LoadPackage("AutoDoc", "2018.02.14") then
Error("AutoDoc version 2018.02.14 or newer is required.");
if fail = LoadPackage("AutoDoc") then
Error("AutoDoc required.");
fi;

AutoDoc("latexgen", rec( scaffold := true ));
AutoDoc("latexgen", rec( scaffold := true, autodoc := true ));

0 comments on commit 4a431af

Please sign in to comment.