Skip to content

Commit

Permalink
Creating release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pkiraly committed Jul 18, 2023
1 parent 3d2e099 commit d7f7ad0
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ LABEL maintainer="Péter Király <pkiraly@gwdg.de>, Ákos Takács <rimelek@rimel

LABEL description="QA catalogue - a metadata quality assessment tool for MARC based library catalogues."

ARG QA_CATALOGUE_VERSION=0.7.0-rc2
ARG QA_CATALOGUE_WEB_VERSION=0.7.0-rc2
ARG QA_CATALOGUE_VERSION=0.7.0
ARG QA_CATALOGUE_WEB_VERSION=0.7.0
ARG DEBIAN_FRONTEND=noninteractive
ARG SMARTY_VERSION=3.1.44
ARG SOLR_VERSION=8.11.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1133,7 +1133,7 @@ here in a parsed format. It also contains some metadata such as the versions of
"marc21":true,
"pica":false,
"mqaf.version":"0.9.2",
"qa-catalogue.version":"0.7.0-rc2"
"qa-catalogue.version":"0.7.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion common-variables
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION=0.7.0-rc2
VERSION=0.7.0
JAR=target/qa-catalogue-${VERSION}-jar-with-dependencies.jar
DIR=.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>de.gwdg.metadataqa</groupId>
<artifactId>qa-catalogue</artifactId>
<packaging>jar</packaging>
<version>0.7.0-rc2</version>
<version>0.7.0</version>
<name>Quality assessment for bibliogaphic records</name>
<description>
A metadata quality assessment framework for bibliogaphic (MARC21 and PICA) records.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ public void completeness_pica_groupBy_file() throws Exception {
assertTrue(line.contains("\"replacementInControlFields\":null,"));
assertTrue(line.contains("\"marc21\":false,"));
assertTrue(line.contains("\"mqaf.version\":\"0.9.3\","));
assertTrue(line.contains("\"qa-catalogue.version\":\"0.7.0-rc2\"}"));
assertTrue(line.contains("\"qa-catalogue.version\":\"0.7.0\"}"));

} else if (outputFile.equals("libraries.csv")) {
output = new File(outputDir, outputFile);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public void validate_pica_groupBy() throws Exception {
assertTrue(line.contains("\"replacementInControlFields\":null,"));
assertTrue(line.contains("\"marc21\":false,"));
assertTrue(line.contains("\"mqaf.version\":\"0.9.3\","));
assertTrue(line.contains("\"qa-catalogue.version\":\"0.7.0-rc2\"}"));
assertTrue(line.contains("\"qa-catalogue.version\":\"0.7.0\"}"));

} else {
fail("Untested output file: " + outputFile);
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/de/gwdg/metadataqa/marc/cli/VersionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

public class VersionTest {

private static final String VERSION = "0.7.0-rc2";
private static final String VERSION = "0.7.0";

@Test
public void getVersion() {
Expand Down

0 comments on commit d7f7ad0

Please sign in to comment.