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

enhance README.md #73

Merged
merged 2 commits into from
Jan 3, 2025
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
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# CHANGES log for the 'Utils' package

## Version 0.87dev for GAP 4.14.0 (03/01/25)

## Version 0.87 ready for GAP 4.14.0 (20/10/24)
* (20/10/24) fix tests and examples to new GAP website

Expand Down
8 changes: 4 additions & 4 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ SetPackageInfo( rec(

PackageName := "utils",
Subtitle := "Utility functions in GAP",
Version := "0.87-dev",
Date := "06/12/2024", # dd/mm/yyyy format
Version := "0.87dev",
Date := "03/01/2025", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand Down Expand Up @@ -134,7 +134,7 @@ AvailabilityTest := ReturnTrue,
Keywords := [ ],

BannerString := Concatenation(
"Loading Utils ", String( ~.Version ), " for GAP 4.13.0",
"Loading Utils ", String( ~.Version ), " for GAP 4.14.0",
" - a collection of utility functions.\n"
),

Expand All @@ -143,7 +143,7 @@ TestFile := "tst/testall.g",
AutoDoc := rec(
TitlePage := rec(
Copyright := Concatenation(
"&copyright; 2015-2024, The GAP Group. <P/>\n",
"© 2015-2025, The GAP Group. <P/>\n",
"The &Utils; package is free software; you can redistribute it ",
"and/or modify it under the terms of the GNU General ",
"Public License as published by the Free Software Foundation; ",
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Other generally useful functions, which are not deemed suitable for the main lib

## Copyright

The `Utils` package is Copyright {\copyright} The GAP Group, 2015-2024.
The `Utils` package is Copyright © The GAP Group, 2015-2025.

`Utils` is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand All @@ -34,15 +34,16 @@ For details, see <https://www.gnu.org/licenses/gpl.html>
of the GAP root directory.

* From within GAP load the package with:

gap> LoadPackage("utils");

```
gap> LoadPackage("utils");
true
```
* The file `manual.pdf` is in the `doc` subdirectory.

## Contact

If you have a question relating to `Utils`, encounter any problems,
or wish to suggest other functions to be transferred to the package, please
* email <[email protected]>
* email: <mailto:[email protected]>
* or report an issue on the GitHub issue tracker at:
<https://github.com/gap-packages/utils/issues/new>
Loading