Skip to content

Commit 7acf7fc

Browse files
committed
Release 0.9.4
1 parent 6a6494a commit 7acf7fc

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Metadata Quality Assessment Framework API Changelog
22

3+
## v0.9.4 (2024-04-04)
4+
5+
The release contains dependency updates.
6+
7+
The artefacts of the release are available in Maven Central as well: https://central.sonatype.dev/artifact/de.gwdg.metadataqa/metadata-qa-api/0.9.4
8+
39
## v0.9.3 (2023-07-14)
410

511
Important API change:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ First, add the library into your project's `pom.xml` file:
116116
<dependency>
117117
<groupId>de.gwdg.metadata</groupId>
118118
<artifactId>metadata-qa-api</artifactId>
119-
<version>0.9.2</version>
119+
<version>0.9.4</version>
120120
</dependency>
121121
</dependencies>
122122
```

mqa

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
#-----------------------------------------------------------------------
33
# Command line interface for the Metadata Quality Assessment Framework -
44
#-----------------------------------------------------------------------
5-
export VERSION=0.9.2
5+
export VERSION=0.9.4
66
java -jar $(dirname $(readlink -f $0))/metadata-qa-api-${VERSION}-shaded.jar $@

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>de.gwdg.metadataqa</groupId>
66
<artifactId>metadata-qa-api</artifactId>
77
<packaging>jar</packaging>
8-
<version>0.9.3</version>
8+
<version>0.9.4</version>
99
<name>Metadata Quality Assurance Framework API</name>
1010
<description>
1111
A metadata quality assurance framework. It checks some metrics of
@@ -22,10 +22,10 @@
2222
<organization>
2323
Gesellschaft für wissenschaftliche Datenverarbeitung mbH Göttingen (GWDG)
2424
</organization>
25-
<organizationUrl>http://gwdg.de/</organizationUrl>
25+
<organizationUrl>https://gwdg.de/</organizationUrl>
2626
</developer>
2727
</developers>
28-
<url>http://pkiraly.github.io</url>
28+
<url>https://pkiraly.github.io</url>
2929

3030
<licenses>
3131
<license>

src/test/java/de/gwdg/metadataqa/api/cli/VersionTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66

77
public class VersionTest {
88

9-
private final String EXPECTED_VERSION = "0.9.3";
10-
;
9+
private final String EXPECTED_VERSION = "0.9.4";
1110

1211
@Test
1312
public void getVersion() {

0 commit comments

Comments
 (0)