Skip to content

Commit

Permalink
Increment version. (#509)
Browse files Browse the repository at this point in the history
* Increment version.

* Update lookup test results.
  • Loading branch information
balhoff committed Mar 15, 2023
1 parent 14f8f0c commit 8579ac7
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion minerva-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>minerva</artifactId>
<groupId>org.geneontology</groupId>
<version>0.6.1</version>
<version>0.6.2</version>
</parent>
<artifactId>minerva-cli</artifactId>
<name>Minerva-CommandLineInterface</name>
Expand Down
2 changes: 1 addition & 1 deletion minerva-converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>minerva</artifactId>
<groupId>org.geneontology</groupId>
<version>0.6.1</version>
<version>0.6.2</version>
</parent>
<artifactId>minerva-converter</artifactId>
<name>Minerva-Converter</name>
Expand Down
2 changes: 1 addition & 1 deletion minerva-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>minerva</artifactId>
<groupId>org.geneontology</groupId>
<version>0.6.1</version>
<version>0.6.2</version>
</parent>
<artifactId>minerva-core</artifactId>
<name>Minerva-Core</name>
Expand Down
2 changes: 1 addition & 1 deletion minerva-json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>minerva</artifactId>
<groupId>org.geneontology</groupId>
<version>0.6.1</version>
<version>0.6.2</version>
</parent>
<artifactId>minerva-json</artifactId>
<name>Minerva-JSON-Model</name>
Expand Down
2 changes: 1 addition & 1 deletion minerva-lookup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>minerva</artifactId>
<groupId>org.geneontology</groupId>
<version>0.6.1</version>
<version>0.6.2</version>
</parent>
<artifactId>minerva-lookup</artifactId>
<name>Minerva-Lookup</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public void testLookupGeneProductCls() throws Exception {
assertEquals(1, lookup.size());
LookupEntry e = lookup.get(0);
assertEquals("VIPR1 Hsap", e.label);
assertEquals(23, e.isa_closure.size());
assertEquals(24, e.isa_closure.size());
assertTrue(e.isa_closure.contains("PR:000000001"));
//
gp_iri = handler.getIRI("SGD:S000005952");
Expand All @@ -114,7 +114,7 @@ public void testLookupGeneProductCls() throws Exception {
assertEquals(1, lookup.size());
e = lookup.get(0);
assertEquals("saga-kat2a_human Hsap", e.label);
assertEquals(6, e.isa_closure.size());
assertEquals(7, e.isa_closure.size());
assertTrue(e.isa_closure.contains("GO:0032991"));
}

Expand Down
2 changes: 1 addition & 1 deletion minerva-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>minerva</artifactId>
<groupId>org.geneontology</groupId>
<version>0.6.1</version>
<version>0.6.2</version>
</parent>
<artifactId>minerva-server</artifactId>
<name>Minerva-Server</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.geneontology</groupId>
<version>0.6.1</version>
<version>0.6.2</version>
<artifactId>minerva</artifactId>
<packaging>pom</packaging>
<name>Minerva</name>
Expand Down

0 comments on commit 8579ac7

Please sign in to comment.