Skip to content

Commit

Permalink
Version 0.11.2 (#1036)
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin authored Sep 11, 2024
1 parent 73fbfa3 commit c5766b7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
# Changes in GAP.jl

## Version 0.11.2 (released 2024-09-10)

- Update to GAP 4.13.1
- Add `GetJuliaScratchspace` to `JuliaInterface`
- Enhance `Packages.install`
- Fix access to Julia docstrings from the GAP session
- Restore compatibility with Julia nightly (for now)
- Remove the GAP user preference `IncludeJuliaStartupFile`
that was used to control whether `~/.julia/config/startup.jl`
gets included by Julia when GAP is started together with Julia
via a `gap.sh` script.
In this situation, one can now use the environment variable
`JULIA_STARTUP_FILE_IN_GAP`;
if its value is `yes` then the startup file gets included, otherwise not.
- Various janitorial changes

## Version 0.11.1 (released 2024-06-06)

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.11.1"
version = "0.11.2"

[deps]
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
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.1" ] ] );
APPEND_LIST_INTR( deps, [ [ "JuliaInterface", ">=0.11.2" ] ] );
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.1",
Date := "06/06/2024", # dd/mm/yyyy format
Version := "0.11.2",
Date := "10/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.1",
Date := "06/06/2024", # dd/mm/yyyy format
Version := "0.11.2",
Date := "10/09/2024", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand Down

2 comments on commit c5766b7

@fingolfin
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/114979

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.11.2 -m "<description of version>" c5766b7956a7545b0637a42e61c0b9a48463a3cd
git push origin v0.11.2

Please sign in to comment.