Skip to content

Commit

Permalink
Version 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Feb 5, 2023
1 parent be5528a commit b7efd71
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.9.3-DEV (released YYYY-MM-DD)
## Version 0.9.3 (released 2023-02-05)

- Update package archives to a newer version (corresponding to GAP 4.12.2 plus
some updates). Among other things this should fix troubles using GAP.jl
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.9.3-DEV"
version = "0.9.3"

[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.9.3-DEV" ] ] );
APPEND_LIST_INTR( deps, [ [ "JuliaInterface", ">=0.9.3" ] ] );
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.9.3-DEV",
Date := "02/12/2022", # dd/mm/yyyy format
Version := "0.9.3",
Date := "05/02/2023", # 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.9.3-DEV" ] ],
OtherPackagesLoadedInAdvance := [ [ "JuliaInterface", ">=0.9.3" ] ],
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.9.3-DEV",
Date := "02/12/2022", # dd/mm/yyyy format
Version := "0.9.3",
Date := "05/02/2023", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand Down

2 comments on commit b7efd71

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

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.9.3 -m "<description of version>" b7efd710459921a7012e2a70202358092fd89115
git push origin v0.9.3

Please sign in to comment.