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

Version 0.13.0 #1121

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
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
6 changes: 3 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# Changes in GAP.jl

## Version 0.13.0-DEV (released YYYY-MM-DD)
## Version 0.13.0 (released 2025-01-09)

- **Breaking:** Update to GAP 4.14.0
- **Breaking:** Require `gap_to_julia` methods to handle `recursive`
keyword argument (e.g. by adding `; recursive::Bool = true` to the
argument list and otherwise ignoring it)
- Add `GAP.versioninfo()`
- Add `GAP.Packages.build_recursive(name)`
- Add `GAP.Packages.test(name)`
- Change `GAP.Packages.build(name)` to no longer try to build the package if
it is already installed
- Optimize conversion of GAP strings to Julia strings, symbols or `Vector{UInt8}`
- Use individual artifacts for each GAP package distributed with GAP,
instead of a single huge "artifact" containing all of them and which
has to be downloaded for each update (now we can update GAP packages
Expand Down Expand Up @@ -45,8 +47,6 @@
- simpcomp
- singular
- zeromqinterface
- Add `GAP.versioninfo()`
- Optimize conversion of GAP strings to Julia strings, symbols or `Vector{UInt8}`

## Version 0.12.3 (released 2025-01-01)

Expand Down
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "GAP"
uuid = "c863536a-3901-11e9-33e7-d5cd0df7b904"
authors = ["Thomas Breuer <[email protected]>", "Sebastian Gutsche <[email protected]>", "Max Horn <[email protected]>"]
version = "0.13.0-DEV"
version = "0.13.0"

[deps]
AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d"
Expand Down Expand Up @@ -60,8 +60,8 @@ Artifacts = "1.6"
BinaryWrappers = "0.1.3"
Compat = "4.11"
Downloads = "1.4.3"
GAP_jll = "~400.1400.000"
GAP_lib_jll = "~400.1400.000"
GAP_jll = "~400.1400.002"
GAP_lib_jll = "~400.1400.001"
GAP_pkg_ace_jll = "500.600.200"
GAP_pkg_anupq_jll = "300.300.100"
GAP_pkg_browse_jll = "100.800.2101"
Expand Down
2 changes: 1 addition & 1 deletion gap/systemfile.g
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ end);
# early enough for being required by other GAP packages,
# and such that it is available when user files get read
# via the GAP command line.
deps := [ [ "JuliaInterface", ">=0.13.0-DEV" ] ];
deps := [ [ "JuliaInterface", ">=0.13.0" ] ];
if not IsBound(GAPInfo.KernelInfo.ENVIRONMENT.GAP_BARE_DEPS) then
APPEND_LIST_INTR( deps, GAPInfo.Dependencies.NeededOtherPackages );
fi;
Expand Down
4 changes: 2 additions & 2 deletions pkg/JuliaExperimental/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ SetPackageInfo( rec(

PackageName := "JuliaExperimental",
Subtitle := "Experimental code for the GAP Julia integration",
Version := "0.13.0-DEV",
Date := "09/12/2024", # dd/mm/yyyy format
Version := "0.13.0",
Date := "09/01/2025", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand Down
4 changes: 2 additions & 2 deletions pkg/JuliaInterface/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ SetPackageInfo( rec(

PackageName := "JuliaInterface",
Subtitle := "Interface to Julia",
Version := "0.13.0-DEV",
Date := "09/12/2024", # dd/mm/yyyy format
Version := "0.13.0",
Date := "09/01/2025", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand Down
Loading