Skip to content

Commit

Permalink
Release 0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pkiraly committed Apr 4, 2024
1 parent 6a6494a commit 7acf7fc
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Metadata Quality Assessment Framework API Changelog

## v0.9.4 (2024-04-04)

The release contains dependency updates.

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

## v0.9.3 (2023-07-14)

Important API change:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ First, add the library into your project's `pom.xml` file:
<dependency>
<groupId>de.gwdg.metadata</groupId>
<artifactId>metadata-qa-api</artifactId>
<version>0.9.2</version>
<version>0.9.4</version>
</dependency>
</dependencies>
```
Expand Down
2 changes: 1 addition & 1 deletion mqa
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
#-----------------------------------------------------------------------
# Command line interface for the Metadata Quality Assessment Framework -
#-----------------------------------------------------------------------
export VERSION=0.9.2
export VERSION=0.9.4
java -jar $(dirname $(readlink -f $0))/metadata-qa-api-${VERSION}-shaded.jar $@
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>de.gwdg.metadataqa</groupId>
<artifactId>metadata-qa-api</artifactId>
<packaging>jar</packaging>
<version>0.9.3</version>
<version>0.9.4</version>
<name>Metadata Quality Assurance Framework API</name>
<description>
A metadata quality assurance framework. It checks some metrics of
Expand All @@ -22,10 +22,10 @@
<organization>
Gesellschaft für wissenschaftliche Datenverarbeitung mbH Göttingen (GWDG)
</organization>
<organizationUrl>http://gwdg.de/</organizationUrl>
<organizationUrl>https://gwdg.de/</organizationUrl>
</developer>
</developers>
<url>http://pkiraly.github.io</url>
<url>https://pkiraly.github.io</url>

<licenses>
<license>
Expand Down
3 changes: 1 addition & 2 deletions src/test/java/de/gwdg/metadataqa/api/cli/VersionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@

public class VersionTest {

private final String EXPECTED_VERSION = "0.9.3";
;
private final String EXPECTED_VERSION = "0.9.4";

@Test
public void getVersion() {
Expand Down

0 comments on commit 7acf7fc

Please sign in to comment.