From d98e3c7a93439d431540fde2af42e5e3d3fda7d4 Mon Sep 17 00:00:00 2001 From: Melissa Draper Date: Mon, 19 Jan 2026 16:15:51 -0800 Subject: [PATCH] Makefile now pulls in v3.1 vs v3.0 due to missing reviewBody type --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index e8c1dca..d24b57e 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,11 @@ data/crosswalk.json: scripts/crosswalk_to_json.py data/crosswalk.csv data/properties_description/v2.0.csv: wget https://github.com/codemeta/codemeta/raw/2.1/properties_description.csv -O $@ +# likewise, 3.1 is needed instead of 3.0 due to a missing type value for reviewBody +# causing a display issue on the terms page. No other definition changes between them. +data/properties_description/v3.0.csv: + wget https://github.com/codemeta/codemeta/raw/3.1/properties_description.csv -O $@ + # Download properties descriptions for other versions data/properties_description/v%.csv: wget https://github.com/codemeta/codemeta/raw/$*/properties_description.csv -O $@