File tree 7 files changed +19
-8
lines changed
src/main/java/io/github/ilri/cgspace
7 files changed +19
-8
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 7.6.1.2] - 2024-04-25
8
+ ### Changed
9
+ - Remove reporting from curation tasks since "results" are enough
10
+
7
11
## [ 7.6.1.1] - 2024-04-23
8
12
### Added
9
13
- New ` NormalizeDOIs ` curation task
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ To use these curation tasks in a DSpace project add the following dependency to
17
17
<dependency>
18
18
<groupId>io.github.ilri.cgspace</groupId>
19
19
<artifactId>cgspace-java-helpers</artifactId>
20
- <version>7.6.1.1 -SNAPSHOT</version>
20
+ <version>7.6.1.2 -SNAPSHOT</version>
21
21
</dependency>
22
22
```
23
23
@@ -33,7 +33,7 @@ $ mvn package
33
33
Copy the resulting jar to the DSpace ` lib ` directory:
34
34
35
35
``` 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/
37
37
```
38
38
39
39
## Configuration
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >io.github.ilri.cgspace</groupId >
8
8
<artifactId >cgspace-java-helpers</artifactId >
9
- <version >7.6.1.1 -SNAPSHOT</version >
9
+ <version >7.6.1.2 -SNAPSHOT</version >
10
10
11
11
<name >cgspace-java-helpers</name >
12
12
<url >https://github.com/ilri/cgspace-java-helpers</url >
Original file line number Diff line number Diff line change 26
26
import java .util .List ;
27
27
import java .util .Objects ;
28
28
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
+ */
29
36
public class CountryCodeTagger extends AbstractCurationTask {
30
37
public class CountryCodeTaggerConfig {
31
38
private final String isocodesJsonPath = "/io/github/ilri/cgspace/ctasks/iso_3166-1.json" ;
Original file line number Diff line number Diff line change 29
29
* TODO: allow operation on communities and collections (currently only works on items)
30
30
*
31
31
* @author Alan Orth for the International Livestock Research Institute
32
- * @version 7.6.1.1
32
+ * @version 7.6.1.2
33
33
* @since 7.6.1.1
34
34
*/
35
35
@ Suspendable
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ To use these curation tasks in a DSpace project add the following dependency to
15
15
<dependency>
16
16
<groupId>io.github.ilri.cgspace</groupId>
17
17
<artifactId>cgspace-java-helpers</artifactId>
18
- <version>7.6.1.1 -SNAPSHOT</version>
18
+ <version>7.6.1.2 -SNAPSHOT</version>
19
19
</dependency>
20
20
```
21
21
@@ -31,7 +31,7 @@ $ mvn package
31
31
Copy the resulting jar to the DSpace ` lib ` directory:
32
32
33
33
```
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/
35
35
```
36
36
37
37
## Configuration
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ To use these curation tasks in a DSpace project add the following dependency to
15
15
<dependency >
16
16
<groupId >io.github.ilri.cgspace</groupId >
17
17
<artifactId >cgspace-java-helpers</artifactId >
18
- <version >7.6.1.1 -SNAPSHOT</version >
18
+ <version >7.6.1.2 -SNAPSHOT</version >
19
19
</dependency >
20
20
```
21
21
@@ -31,7 +31,7 @@ $ mvn package
31
31
Copy the resulting jar to the DSpace ` lib ` directory:
32
32
33
33
``` 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/
35
35
```
36
36
37
37
## Invocation
You can’t perform that action at this time.
0 commit comments