Skip to content
Snippets Groups Projects
Commit 647d69ba authored by ignazio's avatar ignazio
Browse files

Release 4.5.12

parent dd21c10c
No related branches found
No related tags found
No related merge requests found
Showing
with 832 additions and 363 deletions
## 4.5.12 06 May 2019
### Features:
* Add support to load an ontology from classpath #837
* Implement Allow annotations to be skipped in module extraction #838
### Bug fixes:
* Fix Multiple Ontology Definitions should obey strict parsing #840
* Fix Unnecessary dc prefix added by Manchester syntax parser #845
* Fix OWLDataFactory::getLiteral error with empty string and integer #846
* Fixed several incorrect XSD datatype matching patterns #844
## 4.5.11 17 April 2019
### Bug fixes:
......
......@@ -6,7 +6,7 @@
<parent>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId>
<version>4.5.11</version>
<version>4.5.12</version>
</parent>
<dependencies>
<dependency>
......
......@@ -157,6 +157,7 @@ public enum ConfigurationOptions {
}
/**
* @param <T> return type
* @param value value to parse according to the enum default value
* @param type type of the returned value
* @return parsed value
......@@ -178,6 +179,7 @@ public enum ConfigurationOptions {
}
/**
* @param <T> return type
* @param type type for this value
* @param overrides local overrides
* @return value for this configuration option. Values are evaluated as follows: first, check
......@@ -203,6 +205,7 @@ public enum ConfigurationOptions {
}
/**
* @param <T> return type
* @param type type to cast to
* @return default value
*/
......
......@@ -32,7 +32,7 @@ public class VersionInfo {
if (v != null) {
version = v;
} else {
version = "4.5.11";
version = "4.5.12";
}
}
......
......@@ -144,6 +144,7 @@ public class Injector {
* Associate a key made of interface type and optional annotations with an instance, adding to
* existing associations
*
* @param <T> return type
* @param t instance
* @param c interface type
* @param annotations annotations
......@@ -158,6 +159,7 @@ public class Injector {
* Associate a key made of interface type and optional annotations with a supplier of instances,
* adding to existing associations
*
* @param <T> return type
* @param t supplier
* @param c interface type
* @param annotations annotations
......@@ -177,6 +179,7 @@ public class Injector {
}
/**
* @param <T> return type
* @param t object to inject
* @return input object with all methods annotated with @Inject having been set with instances.
*/
......@@ -233,6 +236,7 @@ public class Injector {
}
/**
* @param <T> return type
* @param c class
* @param qualifiers optional annotations
* @return instance
......@@ -242,6 +246,7 @@ public class Injector {
}
/**
* @param <T> return type
* @param c class
* @param overrides local overrides of existing bindings
* @param qualifiers optional annotations
......
......@@ -5,7 +5,7 @@
<parent>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId>
<version>4.5.11</version>
<version>4.5.12</version>
</parent>
<dependencies>
<dependency>
......
......@@ -6,7 +6,7 @@
<parent>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId>
<version>4.5.11</version>
<version>4.5.12</version>
</parent>
<dependencies>
<dependency>
......
......@@ -6,7 +6,7 @@
<parent>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId>
<version>4.5.11</version>
<version>4.5.12</version>
</parent>
<dependencies>
<dependency>
......
......@@ -11,8 +11,8 @@ import java.util.stream.Collectors;
public class PrepareForRelease {
public static void main(String[] args) throws IOException {
String newVersion = "4.5.11";
String[] toReplace = new String[] {"4.5.10", "4.5.10-SNAPSHOT"};
String newVersion = "4.5.12";
String[] toReplace = new String[] {"4.5.11", "4.5.11-SNAPSHOT"};
treat(newVersion, toReplace,
"../api/src/main/java/org/semanticweb/owlapi/util/VersionInfo.java");
treat(newVersion, toReplace,
......
org.slf4j.simpleLogger.defaultLogLevel=off
org.slf4j.simpleLogger.defaultLogLevel=DEBUG
org.slf4j.simpleLogger.showDateTime=TRUE
org.slf4j.simpleLogger.dateTimeFormat=yyyy-MM-dd HH:mm:ss:SSS Z
\ No newline at end of file
......@@ -8,7 +8,7 @@
<parent>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId>
<version>4.5.11</version>
<version>4.5.12</version>
</parent>
<properties>
......
......@@ -6,7 +6,7 @@
<parent>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId>
<version>4.5.11</version>
<version>4.5.12</version>
</parent>
<dependencies>
<dependency>
......
......@@ -6,7 +6,7 @@
<parent>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId>
<version>4.5.11</version>
<version>4.5.12</version>
</parent>
<dependencies>
<dependency>
......
......@@ -5,7 +5,7 @@
<parent>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId>
<version>4.5.11</version>
<version>4.5.12</version>
</parent>
<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.
......
......@@ -8,7 +8,7 @@
<parent>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-parent</artifactId>
<version>4.5.11</version>
<version>4.5.12</version>
</parent>
<properties>
......
......@@ -31,6 +31,6 @@ public class VerifyVersionInfoIntegrationTestCase {
VersionInfo info = VersionInfo.getVersionInfo();
assertNotNull("info is null??!!?", info);
String version = info.getVersion();
assertTrue(version.startsWith("4.5.11"));
assertTrue(version.startsWith("4.5.12"));
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment