Skip to content

Commit

Permalink
Version 0.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Oct 17, 2022
1 parent 10c6cf7 commit b7c4496
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
@@ -1,5 +1,9 @@
# Changes in GAP.jl

## Version 0.8.5 (released 2022-10-18)

- Better (?) fix for the race condition the previous release was supposed to address

## Version 0.8.4 (released 2022-10-12)

- Avoid a race condition when loading GAP.jl concurrently in multiple processes
Expand Down
2 changes: 1 addition & 1 deletion 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 <sam@math.rwth-aachen.de>", "Sebastian Gutsche <gutsche@mathematik.uni-siegen.de>", "Max Horn <horn@mathematik.uni-kl.de>"]
version = "0.8.4"
version = "0.8.5"

[deps]
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
Expand Down
2 changes: 1 addition & 1 deletion gap/systemfile.g
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# and such that it is available when user files get read
# via the GAP command line.
deps:= SHALLOW_COPY_OBJ( GAPInfo.Dependencies.NeededOtherPackages );
APPEND_LIST_INTR( deps, [ [ "JuliaInterface", ">=0.8.4" ] ] );
APPEND_LIST_INTR( deps, [ [ "JuliaInterface", ">=0.8.5" ] ] );
GAPInfo.Dependencies:= MakeImmutable( rec( NeededOtherPackages:= deps ) );

# force the --norepl option to be on
Expand Down
6 changes: 3 additions & 3 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.8.4",
Date := "12/10/2022", # dd/mm/yyyy format
Version := "0.8.5",
Date := "18/10/2022", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand Down Expand Up @@ -81,7 +81,7 @@ PackageDoc := rec(
Dependencies := rec(
GAP := ">= 4.11",
NeededOtherPackages := [ ],
OtherPackagesLoadedInAdvance := [ [ "JuliaInterface", ">=0.8.4" ] ],
OtherPackagesLoadedInAdvance := [ [ "JuliaInterface", ">=0.8.5" ] ],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ],
),
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.8.4",
Date := "12/10/2022", # dd/mm/yyyy format
Version := "0.8.5",
Date := "18/10/2022", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand Down

0 comments on commit b7c4496

Please sign in to comment.