Skip to content

Commit

Permalink
Version 0.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Sep 15, 2024
1 parent 562986e commit 785a93a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changes in GAP.jl

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

- Fix the availability check in `Packages.install` to handle transitive dependencies
- Add dependency on AbstractAlgebra
- Replace banner hiding code with the improved version from AbstractAlgebra
- Adjust `show` method for GAP objects to make use of AbstractAlgebra pretty printing

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

- Update to GAP 4.13.1
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.2" ] ] );
APPEND_LIST_INTR( deps, [ [ "JuliaInterface", ">=0.11.3" ] ] );
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.2",
Date := "10/09/2024", # dd/mm/yyyy format
Version := "0.11.3",
Date := "16/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.2",
Date := "10/09/2024", # dd/mm/yyyy format
Version := "0.11.3",
Date := "16/09/2024", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand Down

2 comments on commit 785a93a

@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/115249

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.3 -m "<description of version>" 785a93ae519b1c28c7bd165fa9f1d8ecd7505867
git push origin v0.11.3

Please sign in to comment.