From 26a6bbdd95cb17199e20630ddc8b1e24d41adfb2 Mon Sep 17 00:00:00 2001 From: Arthit Suriyawongkul Date: Tue, 20 Feb 2024 08:24:34 +0000 Subject: [PATCH] Update licenseId examples in codemeta_schema.json (#341) In the examples, - replaced `GPL-3.0` and `LGPL-3.0` - with `GPL-3.0-only` and `LGPL-3.0-or-later` ## Reason `GPL-3.0` and `LGPL-3.0` are deprecated in SPDX license list: - https://spdx.org/licenses/GPL-3.0 - https://spdx.org/licenses/LGPL-3.0 New license IDs are `GPL-3.0-only`,`GPL-3.0-or-later`, `LGPL-3.0-only` and `LGPL-3.0-or-later`: - https://spdx.org/licenses/GPL-3.0-only - https://spdx.org/licenses/GPL-3.0-or-later - https://spdx.org/licenses/LGPL-3.0-only - https://spdx.org/licenses/LGPL-3.0-or-later --- inst/schema/codemeta_schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inst/schema/codemeta_schema.json b/inst/schema/codemeta_schema.json index 0f5af54c..572f1821 100644 --- a/inst/schema/codemeta_schema.json +++ b/inst/schema/codemeta_schema.json @@ -145,7 +145,7 @@ "type":["array", "string"] }, "licenseId": { - "description":"The name of the license agreement governing the use and redistribution of the software. e.g. 'Apache-2.0', 'GPL-3.0', 'LGPL-3.0'", + "description":"The name of the license agreement governing the use and redistribution of the software. e.g. 'Apache-2.0', 'GPL-3.0-only', 'LGPL-3.0-or-later'", "type":"string" }, "title":{