Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Bump QUDT version to [3.1.5](https://github.com/qudt/qudt-public-repo/releases/tag/v3.1.5)
- Exclude all language-specific labels except `en` and `en-US` as their number has increased prohibitively for QUDTLib'
current architecture.

### Fixed

- Recently, the packaging of the `qudtlib` artifact was changed to `pom`, which caused its tests not to
be run any more. This is now fixed by explicitly binding the execution of `surefire:test` to the `test` phase.

## [7.0.1] - 2025-07-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<qudt.release.version>3.1.4</qudt.release.version>
<qudt.release.version>3.1.5</qudt.release.version>
<spotless.format.version>1.25.0</spotless.format.version>
</properties>

Expand Down
15 changes: 15 additions & 0 deletions qudtlib-data-gen/src/main/resources/update-units-by-query2.rq
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
PREFIX qudt: <http://qudt.org/schema/qudt/>
PREFIX unit: <http://qudt.org/vocab/unit/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX quantitykind: <http://qudt.org/vocab/quantitykind/>

DELETE {
?s rdfs:label ?label .
} WHERE {
?s rdfs:label ?label .
FILTER( ! (LANG(?label) IN ("en","en-US")))
FILTER EXISTS {
?s rdfs:label ?keep
FILTER( LANG(?keep) IN ("en","en-US"))
}
}
9 changes: 9 additions & 0 deletions qudtlib-main-rdf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>test</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<dependenciesToScan>
<dependency>io.github.qudtlib:qudtlib-test:test-jar:tests</dependency>
Expand Down
9 changes: 9 additions & 0 deletions qudtlib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>test</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<dependenciesToScan>
<dependency>io.github.qudtlib:qudtlib-test:test-jar:tests</dependency>
Expand Down