diff --git a/CHANGELOG.md b/CHANGELOG.md index 155304525..f5b158aff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +- Upgrade OWLAPI to 4.5.25 [#1093] +- Fixing OBO Serialiser erroneous logging [#1088] +- Fixing OBO Serialiser bug where built in vocabulary was introduced as annotation properties [#1089] ### Added - Subset method added to [`extract`] [#1000] @@ -14,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Restore logging details for CLI [#1091] ## [1.9.2] - 2023-02-09 +- Upgrade OWLAPI to 4.5.24 [#1086] ### Changed - Upgrade OWLAPI to 4.5.24 [#1086] diff --git a/pom.xml b/pom.xml index 3177e012d..afb83798c 100644 --- a/pom.xml +++ b/pom.xml @@ -165,7 +165,7 @@ net.sourceforge.owlapi owlapi-api - 4.5.24 + 4.5.25 com.google.code.findbugs @@ -176,7 +176,7 @@ net.sourceforge.owlapi owlapi-apibinding - 4.5.24 + 4.5.25 com.google.code.findbugs @@ -187,7 +187,7 @@ net.sourceforge.owlapi owlapi-rio - 4.5.24 + 4.5.25 com.google.code.findbugs diff --git a/robot-command/src/test/java/org/obolibrary/robot/CommandLineIT.java b/robot-command/src/test/java/org/obolibrary/robot/CommandLineIT.java index 2412a89ce..e5ce8e031 100644 --- a/robot-command/src/test/java/org/obolibrary/robot/CommandLineIT.java +++ b/robot-command/src/test/java/org/obolibrary/robot/CommandLineIT.java @@ -231,9 +231,18 @@ public void testExecute() throws Exception { } runCommand(command); } - // Regression test for dropped axiom: + + // Regression test for dropped axiom should fail: // https://github.com/ontodev/robot/issues/98 - runCommand("robot convert -i dropped_axiom.owl -o " + "results/dropped_axiom.owl"); + boolean passed = true; + try { + runCommand("robot convert -i dropped_axiom.owl -o " + "results/dropped_axiom.owl"); + } catch (Exception e) { + passed = false; + } + if (passed) { + throw new Exception("dropped_axiom.owl test should fail but it passed"); + } compareResults(); } diff --git a/robot-core/pom.xml b/robot-core/pom.xml index 08123cebe..49177813f 100644 --- a/robot-core/pom.xml +++ b/robot-core/pom.xml @@ -59,7 +59,7 @@ --> - + org.openrdf.rio.* @@ -86,7 +86,7 @@ net.sourceforge.owlapi owlapi-api - 4.5.24 + 4.5.25 com.google.code.findbugs @@ -97,7 +97,7 @@ net.sourceforge.owlapi owlapi-apibinding - 4.5.24 + 4.5.25 com.google.code.findbugs @@ -108,7 +108,7 @@ net.sourceforge.owlapi owlapi-rio - 4.5.24 + 4.5.25 com.google.code.findbugs