Skip to content

Commit

Permalink
Merge branch 'master' into TB_julia_to_gap
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasBreuer authored Sep 20, 2024
2 parents d0e7cc3 + 1ca738e commit c30e5b8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
recursive conversions make sense.
For that, the function `GAP.GapObj_internal`, the macro `GAP.@install`,
and the type `GapCacheDict` were introduced.

## Version 0.11.4 (released 2024-09-19)

- Support AbstractAlgebra 0.43

## Version 0.11.3 (released 2024-09-16)

Expand Down
4 changes: 2 additions & 2 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.11.3"
version = "0.11.4"

[deps]
AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d"
Expand All @@ -23,7 +23,7 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Scratch = "6c6a2e73-6563-6170-7368-637461726353"

[compat]
AbstractAlgebra = "0.41.11, 0.42.1"
AbstractAlgebra = "0.41.11, 0.42.1, 0.43"
Artifacts = "1.6"
Compat = "4.4.0"
Downloads = "1.4.3"
Expand Down
2 changes: 1 addition & 1 deletion gap/systemfile.g
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
if IsBound(GAPInfo.KernelInfo.ENVIRONMENT.GAP_BARE_DEPS) then
deps:= [];
fi;
APPEND_LIST_INTR( deps, [ [ "JuliaInterface", ">=0.11.3" ] ] );
APPEND_LIST_INTR( deps, [ [ "JuliaInterface", ">=0.11.4" ] ] );
GAPInfo.Dependencies:= MakeImmutable( rec( NeededOtherPackages:= deps ) );

# force the --norepl option to be on
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.11.3",
Date := "16/09/2024", # dd/mm/yyyy format
Version := "0.11.4",
Date := "19/09/2024", # 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.11.3",
Date := "16/09/2024", # dd/mm/yyyy format
Version := "0.11.4",
Date := "19/09/2024", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand Down

0 comments on commit c30e5b8

Please sign in to comment.