From 12a1b1ab397dda740ef8cc9caa16387239a92e37 Mon Sep 17 00:00:00 2001 From: Felix Lohmeier Date: Wed, 6 Apr 2022 13:27:50 +0200 Subject: [PATCH] update OpenRefine to 3.5.2 --- README.md | 4 ++-- Taskfile.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1ec0b45..3b0ca2d 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Templates for OpenRefine batch processing (import, transform, export) using the * apply [undo/redo history](https://docs.openrefine.org/manual/running/#reusing-operations) from given JSON file(s) * export to CSV, TSV, HTML, XLS, XLSX, ODS * [templating export](https://github.com/opencultureconsulting/openrefine-client#templating) to additional formats like JSON or XML - * works with OpenRefine 2.7, 2.8, 3.0, 3.1, 3.2, 3.3, 3.4, 3.4.1 and 3.5.0 + * works with OpenRefine 2.7, 2.8, 3.0, 3.1, 3.2, 3.3, 3.4, 3.4.1 and 3.5 * tasks are easy to extend with additional commands (e.g. to download input data or validate results) ## Typical workflow @@ -76,7 +76,7 @@ Templates for OpenRefine batch processing (import, transform, export) using the sudo apt install ./task_linux_amd64.deb && rm task_linux_amd64.deb ``` -3. Run install task to download [OpenRefine 3.5.0](https://github.com/OpenRefine/OpenRefine/releases/tag/3.5.0) and [openrefine-client 0.3.10](https://github.com/opencultureconsulting/openrefine-client/releases/tag/v0.3.10) +3. Run install task to download [OpenRefine 3.5.2](https://github.com/OpenRefine/OpenRefine/releases/tag/3.5.2) and [openrefine-client 0.3.10](https://github.com/opencultureconsulting/openrefine-client/releases/tag/v0.3.10) ```sh task install diff --git a/Taskfile.yml b/Taskfile.yml index 67b94c3..46c452b 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -36,7 +36,7 @@ tasks: mkdir -p .openrefine - > # download OpenRefine archive wget --no-verbose -O openrefine.tar.gz - https://github.com/OpenRefine/OpenRefine/releases/download/3.5.0/openrefine-linux-3.5.0.tar.gz + https://github.com/OpenRefine/OpenRefine/releases/download/3.5.2/openrefine-linux-3.5.2.tar.gz - | # install OpenRefine into subdirectory .openrefine tar -xzf openrefine.tar.gz -C .openrefine --strip 1 rm openrefine.tar.gz