chore: rename LICENCE to LICENSE so GitHub detects BUSL-1.1 - #224
Closed
yieldhunting wants to merge 1 commit into
Closed
chore: rename LICENCE to LICENSE so GitHub detects BUSL-1.1#224yieldhunting wants to merge 1 commit into
yieldhunting wants to merge 1 commit into
Conversation
GitHub's licence detection only matches the American spelling, so the repository currently reports "Other" / NOASSERTION despite carrying a standard Business Source License 1.1. Renaming the file makes the licence show in the repo sidebar, the API, and downstream tooling that reads it. No change to the licence text or terms. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Renames
LICENCE→LICENSE. No change to the licence text or terms.Why
GitHub's licence detection only matches the American spelling. With the British spelling the repository reports:
despite carrying a standard Business Source License 1.1 (Change Date 2029-01-01, Change License GPL-2.0-or-later), with
// SPDX-License-Identifier: BUSL-1.1on 102 of the 105 files undersrc/.After the rename, GitHub will show BUSL-1.1 in the repo sidebar and return it from the API. That matters for integrators and aggregators that read the API field to determine whether a protocol is source-available — DefiLlama and most security tooling do — and for anyone evaluating whether they can fork or build on Grunt.
How to verify
curl -s https://api.github.com/repos/3FLabs/grunt | jq .licenseCurrently returns
NOASSERTION; after merge it should return the BUSL-1.1 entry.🤖 Generated with Claude Code