Skip to content

Commit

Permalink
Version 0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Jan 26, 2024
1 parent d2fc8fb commit 08facf3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes in GAP.jl

## Version 0.10.2 (released YYYY-MM-DD)
## Version 0.10.2 (released 2024-01-26)

- Add `GAP.Packages.locate_package`
- Enhance `GAP.Packages.load` to accept a URL string for the `install`
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 <[email protected]>", "Sebastian Gutsche <[email protected]>", "Max Horn <[email protected]>"]
version = "0.10.1"
version = "0.10.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.10.1" ] ] );
APPEND_LIST_INTR( deps, [ [ "JuliaInterface", ">=0.10.2" ] ] );
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.10.1",
Date := "29/12/2023", # dd/mm/yyyy format
Version := "0.10.2",
Date := "26/01/2024", # 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.10.1" ] ],
OtherPackagesLoadedInAdvance := [ [ "JuliaInterface", ">=0.10.2" ] ],
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.10.1",
Date := "29/12/2023", # dd/mm/yyyy format
Version := "0.10.2",
Date := "26/01/2024", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand Down

2 comments on commit 08facf3

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

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.10.2 -m "<description of version>" 08facf3aba0442a3f6228900993a245e3a6413f0
git push origin v0.10.2

Please sign in to comment.