diff --git a/CHANGELOG.md b/CHANGELOG.md index 422bd48..9d26ddf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [7.6.1.2] - 2024-04-25 +### Changed +- Remove reporting from curation tasks since "results" are enough + ## [7.6.1.1] - 2024-04-23 ### Added - New `NormalizeDOIs` curation task diff --git a/README.md b/README.md index 7079da1..7a9843e 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ To use these curation tasks in a DSpace project add the following dependency to io.github.ilri.cgspace cgspace-java-helpers - 7.6.1.1-SNAPSHOT + 7.6.1.2-SNAPSHOT ``` @@ -33,7 +33,7 @@ $ mvn package Copy the resulting jar to the DSpace `lib` directory: ```console -$ cp target/cgspace-java-helpers-7.6.1.1-SNAPSHOT.jar ~/dspace/lib/ +$ cp target/cgspace-java-helpers-7.6.1.2-SNAPSHOT.jar ~/dspace/lib/ ``` ## Configuration diff --git a/pom.xml b/pom.xml index 6134154..356e088 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ io.github.ilri.cgspace cgspace-java-helpers - 7.6.1.1-SNAPSHOT + 7.6.1.2-SNAPSHOT cgspace-java-helpers https://github.com/ilri/cgspace-java-helpers diff --git a/src/main/java/io/github/ilri/cgspace/ctasks/CountryCodeTagger.java b/src/main/java/io/github/ilri/cgspace/ctasks/CountryCodeTagger.java index b1a12d2..d0d8c4b 100644 --- a/src/main/java/io/github/ilri/cgspace/ctasks/CountryCodeTagger.java +++ b/src/main/java/io/github/ilri/cgspace/ctasks/CountryCodeTagger.java @@ -26,6 +26,13 @@ import java.util.ArrayList; import java.util.List; import java.util.Objects; +/* + * Add ISO 3166-1 Alpha2 country codes to items based on their existing country metadata. + * + * @author Alan Orth for the International Livestock Research Institute + * @version 7.6.1.2 + * @since 5.1 + */ public class CountryCodeTagger extends AbstractCurationTask { public class CountryCodeTaggerConfig { private final String isocodesJsonPath = "/io/github/ilri/cgspace/ctasks/iso_3166-1.json"; diff --git a/src/main/java/io/github/ilri/cgspace/ctasks/NormalizeDOIs.java b/src/main/java/io/github/ilri/cgspace/ctasks/NormalizeDOIs.java index e7573fc..0714d41 100644 --- a/src/main/java/io/github/ilri/cgspace/ctasks/NormalizeDOIs.java +++ b/src/main/java/io/github/ilri/cgspace/ctasks/NormalizeDOIs.java @@ -29,7 +29,7 @@ import java.util.List; * TODO: allow operation on communities and collections (currently only works on items) * * @author Alan Orth for the International Livestock Research Institute - * @version 7.6.1.1 + * @version 7.6.1.2 * @since 7.6.1.1 */ @Suspendable diff --git a/src/main/java/io/github/ilri/cgspace/ctasks/README.md b/src/main/java/io/github/ilri/cgspace/ctasks/README.md index 14912f3..17f9624 100644 --- a/src/main/java/io/github/ilri/cgspace/ctasks/README.md +++ b/src/main/java/io/github/ilri/cgspace/ctasks/README.md @@ -15,7 +15,7 @@ To use these curation tasks in a DSpace project add the following dependency to io.github.ilri.cgspace cgspace-java-helpers - 7.6.1.1-SNAPSHOT + 7.6.1.2-SNAPSHOT ``` @@ -31,7 +31,7 @@ $ mvn package Copy the resulting jar to the DSpace `lib` directory: ``` -$ cp target/cgspace-java-helpers-7.6.1.1-SNAPSHOT.jar ~/dspace/lib/ +$ cp target/cgspace-java-helpers-7.6.1.2-SNAPSHOT.jar ~/dspace/lib/ ``` ## Configuration diff --git a/src/main/java/io/github/ilri/cgspace/scripts/README.md b/src/main/java/io/github/ilri/cgspace/scripts/README.md index ac20ff2..f2f51b7 100644 --- a/src/main/java/io/github/ilri/cgspace/scripts/README.md +++ b/src/main/java/io/github/ilri/cgspace/scripts/README.md @@ -15,7 +15,7 @@ To use these curation tasks in a DSpace project add the following dependency to io.github.ilri.cgspace cgspace-java-helpers - 7.6.1.1-SNAPSHOT + 7.6.1.2-SNAPSHOT ``` @@ -31,7 +31,7 @@ $ mvn package Copy the resulting jar to the DSpace `lib` directory: ```console -$ cp target/cgspace-java-helpers-7.6.1.1-SNAPSHOT.jar ~/dspace/lib/ +$ cp target/cgspace-java-helpers-7.6.1.2-SNAPSHOT.jar ~/dspace/lib/ ``` ## Invocation