Skip to content

Commit d4ca920

Browse files
committed
Version 7.6.1.2
1 parent 5ad8c55 commit d4ca920

File tree

7 files changed

+19
-8
lines changed

7 files changed

+19
-8
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [7.6.1.2] - 2024-04-25
8+
### Changed
9+
- Remove reporting from curation tasks since "results" are enough
10+
711
## [7.6.1.1] - 2024-04-23
812
### Added
913
- New `NormalizeDOIs` curation task

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To use these curation tasks in a DSpace project add the following dependency to
1717
<dependency>
1818
<groupId>io.github.ilri.cgspace</groupId>
1919
<artifactId>cgspace-java-helpers</artifactId>
20-
<version>7.6.1.1-SNAPSHOT</version>
20+
<version>7.6.1.2-SNAPSHOT</version>
2121
</dependency>
2222
```
2323

@@ -33,7 +33,7 @@ $ mvn package
3333
Copy the resulting jar to the DSpace `lib` directory:
3434

3535
```console
36-
$ cp target/cgspace-java-helpers-7.6.1.1-SNAPSHOT.jar ~/dspace/lib/
36+
$ cp target/cgspace-java-helpers-7.6.1.2-SNAPSHOT.jar ~/dspace/lib/
3737
```
3838

3939
## Configuration

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.ilri.cgspace</groupId>
88
<artifactId>cgspace-java-helpers</artifactId>
9-
<version>7.6.1.1-SNAPSHOT</version>
9+
<version>7.6.1.2-SNAPSHOT</version>
1010

1111
<name>cgspace-java-helpers</name>
1212
<url>https://github.com/ilri/cgspace-java-helpers</url>

src/main/java/io/github/ilri/cgspace/ctasks/CountryCodeTagger.java

+7
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@
2626
import java.util.List;
2727
import java.util.Objects;
2828

29+
/*
30+
* Add ISO 3166-1 Alpha2 country codes to items based on their existing country metadata.
31+
*
32+
* @author Alan Orth for the International Livestock Research Institute
33+
* @version 7.6.1.2
34+
* @since 5.1
35+
*/
2936
public class CountryCodeTagger extends AbstractCurationTask {
3037
public class CountryCodeTaggerConfig {
3138
private final String isocodesJsonPath = "/io/github/ilri/cgspace/ctasks/iso_3166-1.json";

src/main/java/io/github/ilri/cgspace/ctasks/NormalizeDOIs.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* TODO: allow operation on communities and collections (currently only works on items)
3030
*
3131
* @author Alan Orth for the International Livestock Research Institute
32-
* @version 7.6.1.1
32+
* @version 7.6.1.2
3333
* @since 7.6.1.1
3434
*/
3535
@Suspendable

src/main/java/io/github/ilri/cgspace/ctasks/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To use these curation tasks in a DSpace project add the following dependency to
1515
<dependency>
1616
<groupId>io.github.ilri.cgspace</groupId>
1717
<artifactId>cgspace-java-helpers</artifactId>
18-
<version>7.6.1.1-SNAPSHOT</version>
18+
<version>7.6.1.2-SNAPSHOT</version>
1919
</dependency>
2020
```
2121

@@ -31,7 +31,7 @@ $ mvn package
3131
Copy the resulting jar to the DSpace `lib` directory:
3232

3333
```
34-
$ cp target/cgspace-java-helpers-7.6.1.1-SNAPSHOT.jar ~/dspace/lib/
34+
$ cp target/cgspace-java-helpers-7.6.1.2-SNAPSHOT.jar ~/dspace/lib/
3535
```
3636

3737
## Configuration

src/main/java/io/github/ilri/cgspace/scripts/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To use these curation tasks in a DSpace project add the following dependency to
1515
<dependency>
1616
<groupId>io.github.ilri.cgspace</groupId>
1717
<artifactId>cgspace-java-helpers</artifactId>
18-
<version>7.6.1.1-SNAPSHOT</version>
18+
<version>7.6.1.2-SNAPSHOT</version>
1919
</dependency>
2020
```
2121

@@ -31,7 +31,7 @@ $ mvn package
3131
Copy the resulting jar to the DSpace `lib` directory:
3232

3333
```console
34-
$ cp target/cgspace-java-helpers-7.6.1.1-SNAPSHOT.jar ~/dspace/lib/
34+
$ cp target/cgspace-java-helpers-7.6.1.2-SNAPSHOT.jar ~/dspace/lib/
3535
```
3636

3737
## Invocation

0 commit comments

Comments
 (0)