From 62555c43cdb3e541fe6ff6e3a6601069a1662c71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?A=CC=82nderson=20Q?= Date: Wed, 12 Aug 2026 09:19:22 -0300 Subject: [PATCH] chore(license): move dual-licensing terms to LICENSING.md LICENSE carried the dual-license preamble above the AGPL-3.0 text, so GitHub's licence matcher could not identify it and reported "Other". LICENSE now holds the verbatim AGPL-3.0 and nothing else; the dual-licensing terms move to LICENSING.md, matching the other public repos. --- LICENSE | 12 ------------ LICENSING.md | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 12 deletions(-) create mode 100644 LICENSING.md diff --git a/LICENSE b/LICENSE index cca2509..be3f7b2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,15 +1,3 @@ -hey is dual-licensed. - - 1. Open source — GNU Affero General Public License v3.0 (AGPL-3.0), the full - text of which follows below. - 2. Commercial — to use hey without the obligations of the AGPL-3.0 (for - example, in a closed-source or SaaS context), a commercial license is - available. Contact ahoy@42labs.io. - -Copyright (c) 2026 42labs. - -================================================================================ - GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 diff --git a/LICENSING.md b/LICENSING.md new file mode 100644 index 0000000..b6edd47 --- /dev/null +++ b/LICENSING.md @@ -0,0 +1,17 @@ +# Licensing + +Copyright (c) 2026 42labs. + +hey is dual-licensed. + +1. **Open source** — [GNU Affero General Public License v3.0](LICENSE) (AGPL-3.0). + Use it, run it, modify it, self-host it. If you run a modified version as a + network service, the AGPL requires you to offer your users its source. + +2. **Commercial** — to use hey without the obligations of the AGPL-3.0 + (for example, in a closed-source or SaaS context), a commercial license is + available. Contact . + +`LICENSE` holds the verbatim AGPL-3.0 text and nothing else, so that GitHub — and +every tool that reads a licence by matching it — identifies the project correctly. +The dual-licensing terms live here.