Skip to content

Commit

Permalink
Updates for FreeBSD AArch64 support (#1342)
Browse files Browse the repository at this point in the history
* Updates for FreeBSD AArch64 support

Changes:
- Include FreeBSD AArch64 in minimum Julia compat check as is done for
  macOS AArch64.
- Mention FreeBSD AArch64 in the documentation for what's built by
  default.
- Avoid installing the Rust compiler shards on FreeBSD AArch64 because
  they don't exist (yet?!?!).

* Delete and ignore top-level Manifest.toml

By request

* Bump minor version for a breaking release

As of this version, the package will error upon loading if used with
Julia > 1.7. Previously it could be loaded but didn't work properly with
later Julia versions. To be safe, we're making this a breaking release.
It should be a largely user-invisible change though, as BinaryBuilder is
generally not used as a package dependency.
  • Loading branch information
ararslan committed Sep 8, 2024
1 parent 8aadff4 commit 49f57bf
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 576 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*.jl.cov
*.jl.*.cov
*.jl.mem
/Manifest.toml
global_prefix
.vscode/

Expand Down
Loading

2 comments on commit 49f57bf

@giordano
Copy link
Member

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/114756

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.6.0 -m "<description of version>" 49f57bf81242e44c01689a483399c2e2fd7249bf
git push origin v0.6.0

Please sign in to comment.