Skip to content

Commit

Permalink
Version 0.13.0 (#1121)
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin authored Jan 12, 2025
1 parent dff38af commit 319e5cb
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# Changes in GAP.jl

## Version 0.13.0-DEV (released YYYY-MM-DD)
## Version 0.13.0 (released 2025-01-12)

- **Breaking:** Update to GAP 4.14.0
- **Breaking:** Require `gap_to_julia` methods to handle `recursive`
keyword argument (e.g. by adding `; recursive::Bool = true` to the
argument list and otherwise ignoring it)
- Add `GAP.versioninfo()`
- Add `GAP.Packages.build_recursive(name)`
- Add `GAP.Packages.test(name)`
- Change `GAP.Packages.build(name)` to no longer try to build the package if
it is already installed
- Optimize conversion of GAP strings to Julia strings, symbols or `Vector{UInt8}`
- Use individual artifacts for each GAP package distributed with GAP,
instead of a single huge "artifact" containing all of them and which
has to be downloaded for each update (now we can update GAP packages
Expand Down Expand Up @@ -45,8 +47,6 @@
- simpcomp
- singular
- zeromqinterface
- Add `GAP.versioninfo()`
- Optimize conversion of GAP strings to Julia strings, symbols or `Vector{UInt8}`

## Version 0.12.3 (released 2025-01-01)

Expand Down
6 changes: 3 additions & 3 deletions 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.13.0-DEV"
version = "0.13.0"

[deps]
AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d"
Expand Down Expand Up @@ -60,8 +60,8 @@ Artifacts = "1.6"
BinaryWrappers = "0.1.3"
Compat = "4.11"
Downloads = "1.4.3"
GAP_jll = "~400.1400.000"
GAP_lib_jll = "~400.1400.000"
GAP_jll = "~400.1400.002"
GAP_lib_jll = "~400.1400.002"
GAP_pkg_ace_jll = "500.600.200"
GAP_pkg_anupq_jll = "300.300.100"
GAP_pkg_browse_jll = "100.800.2101"
Expand Down
2 changes: 1 addition & 1 deletion gap/systemfile.g
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ end);
# early enough for being required by other GAP packages,
# and such that it is available when user files get read
# via the GAP command line.
deps := [ [ "JuliaInterface", ">=0.13.0-DEV" ] ];
deps := [ [ "JuliaInterface", ">=0.13.0" ] ];
if not IsBound(GAPInfo.KernelInfo.ENVIRONMENT.GAP_BARE_DEPS) then
APPEND_LIST_INTR( deps, GAPInfo.Dependencies.NeededOtherPackages );
fi;
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.13.0-DEV",
Date := "09/12/2024", # dd/mm/yyyy format
Version := "0.13.0",
Date := "12/01/2025", # 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.13.0-DEV",
Date := "09/12/2024", # dd/mm/yyyy format
Version := "0.13.0",
Date := "12/01/2025", # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
Expand Down

2 comments on commit 319e5cb

@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 register

Release notes:

  • Breaking: Update to GAP 4.14.0
  • Breaking: Require gap_to_julia methods to handle recursive
    keyword argument (e.g. by adding ; recursive::Bool = true to the
    argument list and otherwise ignoring it)
  • Add GAP.versioninfo()
  • Add GAP.Packages.build_recursive(name)
  • Add GAP.Packages.test(name)
  • Change GAP.Packages.build(name) to no longer try to build the package if
    it is already installed
  • Optimize conversion of GAP strings to Julia strings, symbols or Vector{UInt8}
  • Use individual artifacts for each GAP package distributed with GAP,
    instead of a single huge "artifact" containing all of them and which
    has to be downloaded for each update (now we can update GAP packages
    individually)
  • Use precompiled binaries for the following GAP packages:
    • 4ti2interface
    • ace
    • anupq
    • browse
    • caratinterface
    • cddinterface
    • cohomolo
    • crypting
    • curlinterface
    • cvec
    • datastructures
    • deepthought
    • digraphs
    • edim
    • ferret
    • float
    • fplsa
    • gauss
    • grape
    • guava
    • io
    • json
    • kbmag
    • normalizinterface
    • nq
    • orb
    • profiling
    • simpcomp
    • singular
    • zeromqinterface

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

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.13.0 -m "<description of version>" 319e5cb5a1cd3e6230006c789bfab83f33fc9653
git push origin v0.13.0

Please sign in to comment.