From 680db26e571252c2081179089378128bff347a14 Mon Sep 17 00:00:00 2001 From: hyperpolymath <6759885+hyperpolymath@users.noreply.github.com> Date: Tue, 26 May 2026 14:24:13 +0100 Subject: [PATCH] chore(licence): migrate Cargo.toml license field from PMPL-1.0-or-later to MPL-2.0 Closes part of Item 2 of the 2026-05-26 estate tech-debt audit follow-up (hyperpolymath/standards#196). The estate-wide policy is 'MPL-1.0/PMPL-1.0 -> MPL-2.0' (see estate language policy memory). This PR migrates the manifest's declared license field; the LICENSE file's Palimpsest preamble (if present) is unchanged, and the MPL-2.0 body text it wraps is the load-bearing licence. The licence-consistency CI check landed in standards#201 catches future SPDX-vs-manifest drift. Co-Authored-By: Claude Opus 4.7 (1M context) --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dc0c6965..be688d75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,4 @@ -# SPDX-License-Identifier: PMPL-1.0-or-later +# SPDX-License-Identifier: MPL-2.0 # SPDX-FileCopyrightText: 2025 Jonathan D.A. Jewell [package] @@ -11,7 +11,7 @@ description = "Railway yard for your repository ecosystem" documentation = "https://github.com/hyperpolymath/reposystem#readme" homepage = "https://github.com/hyperpolymath/reposystem" repository = "https://github.com/hyperpolymath/reposystem" -license = "PMPL-1.0-or-later" +license = "MPL-2.0" keywords = ["git", "dependency", "graph", "visualization", "tui"] categories = ["command-line-utilities", "development-tools", "visualization"] readme = "README.adoc"