Skip to content
Snippets Groups Projects
Commit 0895471d authored by ignazio's avatar ignazio
Browse files

Release 4.5.11

parent f34c33c2
No related branches found
No related tags found
No related merge requests found
Showing with 28 additions and 17 deletions
## 4.5.11 17 April 2019
### Bug fixes:
* Fix HTTP 307 and HTTP 308 redirects are not followed (in 4.x) #821
* Fix Missing escape character in OBO output #828
* Fix OWLDataPropertyAxiom not a subinterface of OWLPropertyAxiom #831
* Fix MaximumNumberOfNamedSuperclasses should count super classes #836
* Fix OWLOntology::getGeneralClassAxioms slow #839
* Fix roundtrip of escaped values #833
## 4.5.10 14 March 2019 ## 4.5.10 14 March 2019
### Bug fixes: ### Bug fixes:
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>net.sourceforge.owlapi</groupId> <groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId> <artifactId>owlapi-parent</artifactId>
<version>4.5.10</version> <version>4.5.11</version>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
......
...@@ -32,7 +32,7 @@ public class VersionInfo { ...@@ -32,7 +32,7 @@ public class VersionInfo {
if (v != null) { if (v != null) {
version = v; version = v;
} else { } else {
version = "4.5.10"; version = "4.5.11";
} }
} }
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>net.sourceforge.owlapi</groupId> <groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId> <artifactId>owlapi-parent</artifactId>
<version>4.5.10</version> <version>4.5.11</version>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>net.sourceforge.owlapi</groupId> <groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId> <artifactId>owlapi-parent</artifactId>
<version>4.5.10</version> <version>4.5.11</version>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>net.sourceforge.owlapi</groupId> <groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId> <artifactId>owlapi-parent</artifactId>
<version>4.5.10</version> <version>4.5.11</version>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
......
...@@ -11,8 +11,8 @@ import java.util.stream.Collectors; ...@@ -11,8 +11,8 @@ import java.util.stream.Collectors;
public class PrepareForRelease { public class PrepareForRelease {
public static void main(String[] args) throws IOException { public static void main(String[] args) throws IOException {
String newVersion = "4.5.10"; String newVersion = "4.5.11";
String[] toReplace = new String[] {"4.5.9", "4.5.9-SNAPSHOT"}; String[] toReplace = new String[] {"4.5.10", "4.5.10-SNAPSHOT"};
treat(newVersion, toReplace, treat(newVersion, toReplace,
"../api/src/main/java/org/semanticweb/owlapi/util/VersionInfo.java"); "../api/src/main/java/org/semanticweb/owlapi/util/VersionInfo.java");
treat(newVersion, toReplace, treat(newVersion, toReplace,
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<parent> <parent>
<groupId>net.sourceforge.owlapi</groupId> <groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId> <artifactId>owlapi-parent</artifactId>
<version>4.5.10</version> <version>4.5.11</version>
</parent> </parent>
<properties> <properties>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>net.sourceforge.owlapi</groupId> <groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId> <artifactId>owlapi-parent</artifactId>
<version>4.5.10</version> <version>4.5.11</version>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>net.sourceforge.owlapi</groupId> <groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId> <artifactId>owlapi-parent</artifactId>
<version>4.5.10</version> <version>4.5.11</version>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<parent> <parent>
<groupId>net.sourceforge.owlapi</groupId> <groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId> <artifactId>owlapi-parent</artifactId>
<version>4.5.10</version> <version>4.5.11</version>
</parent> </parent>
<url>https://github.com/owlcollab/oboformat/</url> <url>https://github.com/owlcollab/oboformat/</url>
<description>A java library for converting obo format documents to OWL, and for converting (a subset of) OWL to obo format. This version has been slightly modified to be included directly in the OWL API. <description>A java library for converting obo format documents to OWL, and for converting (a subset of) OWL to obo format. This version has been slightly modified to be included directly in the OWL API.
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<parent> <parent>
<groupId>net.sourceforge.owlapi</groupId> <groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId> <artifactId>owlapi-parent</artifactId>
<version>4.5.10</version> <version>4.5.11</version>
</parent> </parent>
<properties> <properties>
......
...@@ -31,6 +31,6 @@ public class VerifyVersionInfoIntegrationTestCase { ...@@ -31,6 +31,6 @@ public class VerifyVersionInfoIntegrationTestCase {
VersionInfo info = VersionInfo.getVersionInfo(); VersionInfo info = VersionInfo.getVersionInfo();
assertNotNull("info is null??!!?", info); assertNotNull("info is null??!!?", info);
String version = info.getVersion(); String version = info.getVersion();
assertTrue(version.startsWith("4.5.10")); assertTrue(version.startsWith("4.5.11"));
} }
} }
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>net.sourceforge.owlapi</groupId> <groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId> <artifactId>owlapi-parent</artifactId>
<version>4.5.10</version> <version>4.5.11</version>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
<groupId>net.sourceforge.owlapi</groupId> <groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId> <artifactId>owlapi-parent</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<version>4.5.10</version> <version>4.5.11</version>
<name>OWLAPI</name> <name>OWLAPI</name>
<description>The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2</description> <description>The OWL API is a Java API and reference implementation for creating, manipulating and serialising OWL Ontologies. The latest version of the API is focused towards OWL 2</description>
<url>http://owlcs.github.io/owlapi/</url> <url>http://owlcs.github.io/owlapi/</url>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<parent> <parent>
<artifactId>owlapi-parent</artifactId> <artifactId>owlapi-parent</artifactId>
<groupId>net.sourceforge.owlapi</groupId> <groupId>net.sourceforge.owlapi</groupId>
<version>4.5.10</version> <version>4.5.11</version>
</parent> </parent>
<artifactId>owlapi-rio</artifactId> <artifactId>owlapi-rio</artifactId>
<name>OWLAPI :: Sesame Rio module</name> <name>OWLAPI :: Sesame Rio module</name>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>net.sourceforge.owlapi</groupId> <groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId> <artifactId>owlapi-parent</artifactId>
<version>4.5.10</version> <version>4.5.11</version>
</parent> </parent>
<dependencies> <dependencies>
<dependency> <dependency>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment