Skip to content

Commit 372f2f4

Browse files
committed
Bump version to 1.9.9
1 parent 494e43a commit 372f2f4

File tree

8 files changed

+23
-11
lines changed

8 files changed

+23
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.9.9] - 2026-02-18
11+
1012
### Added
1113
- Add `--input-format` global option [#1038]
1214
- Warn on missing `?property` and `?value` in `report` [#1273]
@@ -394,7 +396,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
394396

395397
First official release of ROBOT!
396398

397-
[Unreleased]: https://github.com/ontodev/robot/compare/v1.9.8...HEAD
399+
[Unreleased]: https://github.com/ontodev/robot/compare/v1.9.9...HEAD
400+
[1.9.9]: https://github.com/ontodev/robot/compare/v1.9.8...v1.9.9
398401
[1.9.8]: https://github.com/ontodev/robot/compare/v1.9.7...v1.9.8
399402
[1.9.7]: https://github.com/ontodev/robot/compare/v1.9.6...v1.9.7
400403
[1.9.6]: https://github.com/ontodev/robot/compare/v1.9.5...v1.9.6

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.obolibrary.robot</groupId>
77
<artifactId>robot</artifactId>
8-
<version>1.10.0-SNAPSHOT</version>
8+
<version>1.9.9</version>
99
<packaging>pom</packaging>
1010

1111
<name>robot</name>

robot-command/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.obolibrary.robot</groupId>
88
<artifactId>robot</artifactId>
9-
<version>1.10.0-SNAPSHOT</version>
9+
<version>1.9.9</version>
1010
</parent>
1111
<artifactId>robot-command</artifactId>
1212
<name>robot-command</name>

robot-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.obolibrary.robot</groupId>
88
<artifactId>robot</artifactId>
9-
<version>1.10.0-SNAPSHOT</version>
9+
<version>1.9.9</version>
1010
</parent>
1111
<artifactId>robot-core</artifactId>
1212
<name>robot-core</name>

robot-core/src/main/java/org/obolibrary/robot/IOHelper.java

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,13 @@ public class IOHelper {
7979
private static final String invalidOntologyFileError =
8080
NS + "INVALID ONTOLOGY FILE ERROR Could not load a valid ontology from file: %s";
8181

82-
/** Error message when the specified file cannot be loaded using the specified format. Expects the format name and file name. */
82+
/**
83+
* Error message when the specified file cannot be loaded using the specified format. Expects the
84+
* format name and file name.
85+
*/
8386
private static final String invalidOntologyFileFormatError =
84-
NS + "INVALID ONTOLOGY FILE FORMAT ERROR Could not load a valid ontology using '%s' format from file: %s";
87+
NS
88+
+ "INVALID ONTOLOGY FILE FORMAT ERROR Could not load a valid ontology using '%s' format from file: %s";
8589

8690
/** Error message when the specified IRI cannot be loaded. Expects the IRI string. */
8791
private static final String invalidOntologyIRIError =
@@ -494,7 +498,8 @@ public OWLOntology loadOntology(File ontologyFile, File catalogFile, String inpu
494498
if (inputFormat == null) {
495499
throw new IOException(String.format(invalidOntologyFileError, ontologyFile.getName()), e);
496500
} else {
497-
throw new IOException(String.format(invalidOntologyFileFormatError, inputFormat, ontologyFile.getName()), e);
501+
throw new IOException(
502+
String.format(invalidOntologyFileFormatError, inputFormat, ontologyFile.getName()), e);
498503
}
499504
}
500505
}

robot-core/src/main/resources/obo_context.jsonld

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,10 @@
291291
"@id": "http://purl.obolibrary.org/obo/EV_",
292292
"@prefix": true
293293
},
294+
"EXMO": {
295+
"@id": "http://purl.obolibrary.org/obo/EXMO_",
296+
"@prefix": true
297+
},
294298
"ExO": {
295299
"@id": "http://purl.obolibrary.org/obo/ExO_",
296300
"@prefix": true

robot-maven-plugin/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
<parent>
99
<groupId>org.obolibrary.robot</groupId>
1010
<artifactId>robot</artifactId>
11-
<version>1.10.0-SNAPSHOT</version>
11+
<version>1.9.9</version>
1212
</parent>
1313

1414
<artifactId>robot-maven-plugin</artifactId>
15-
<version>1.10.0-SNAPSHOT</version>
15+
<version>1.9.9</version>
1616
<packaging>maven-plugin</packaging>
1717
<name>robot-maven-plugin</name>
1818

@@ -55,7 +55,7 @@
5555
<plugin>
5656
<groupId>org.obolibrary.robot</groupId>
5757
<artifactId>robot-maven-plugin</artifactId>
58-
<version>1.10.0-SNAPSHOT</version>
58+
<version>1.9.9</version>
5959
</plugin>
6060
</plugins>
6161
</build>

robot-mock-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.obolibrary.robot</groupId>
88
<artifactId>robot</artifactId>
9-
<version>1.10.0-SNAPSHOT</version>
9+
<version>1.9.9</version>
1010
</parent>
1111
<artifactId>robot-mock-plugin</artifactId>
1212
<name>robot-mock-plugin</name>

0 commit comments

Comments
 (0)