Skip to content

Commit

Permalink
Remove version numbers from filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
fkleedorfer committed Nov 14, 2024
1 parent 9aae973 commit c6f7b34
Show file tree
Hide file tree
Showing 22 changed files with 76 additions and 74 deletions.
6 changes: 3 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
.gitattributes export-ignore
community export-ignore
docs export-ignore
schema/SCHEMA_QUDT-CITATION-v2.1.ttl export-ignore
schema/SCHEMA_QUDT-DATA-v2.1.ttl export-ignore
schema/SCHEMA_QUDT-CITATION.ttl export-ignore
schema/SCHEMA_QUDT-DATA.ttl export-ignore
submissions export-ignore
vocab/codes export-ignore
vocab/currency/VOCAB_QUDT-UNITS-CURRENCY-sDEPRECATED-v2.1.ttl export-ignore
vocab/currency/VOCAB_QUDT-UNITS-CURRENCY-sDEPRECATED.ttl export-ignore
vocab/disciplines export-ignore
vocab/nidr export-ignore
vocab/quantitykinds/to-be-deprecated-quantitykinds export-ignore
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ and this project is in the process of adopting [Semantic Versioning](https://sem
### Changed

- Changed the name of the `collections` folder to `validation`.
- Remove all version suffixes from all source files, i.e., `-v2.1.ttl` becomes `.ttl`


### Fixed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ We encourage you to get involved. If you have particular needs or see errors, pl
Installation / Configuration instructions
-----------------------------------------

The QUDT ontology is provided in two forms: OWL and SHACL. By default, the vocabularies are configured to use the SHACL schema. To configure it to use the OWL schema instead, just make the following single change in the file schema/SHEMA-FACADE_QUDT-v2.1.ttl. You can see in the imports closure diagram above how all the vocabularies import this single "facade" file to make it easy to switch the ontology.
The QUDT ontology is provided in two forms: OWL and SHACL. By default, the vocabularies are configured to use the SHACL schema. To configure it to use the OWL schema instead, just make the following single change in the file schema/SDHEMA-FACADE_QUDT.ttl. You can see in the imports closure diagram above how all the vocabularies import this single "facade" file to make it easy to switch the ontology.

```
Change this line:
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
<validation>
<!--skip>true</skip-->
<shapes>
<include>target/dist/validation/COLLECTION_QUDT_QA_TESTS_ALL-v2.1.ttl</include>
<include>target/dist/validation/COLLECTION_QUDT_QA_TESTS_ALL.ttl</include>
</shapes>
<data>
<include>
Expand Down Expand Up @@ -159,15 +159,15 @@
<singleFile>
<input>
<include>
src/main/rdf/vocab/quantitykinds/VOCAB_QUDT-QUANTITY-KINDS-ALL-v2.1.ttl
src/main/rdf/vocab/quantitykinds/VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl
</include>
</input>
<filters>
<exclude>
<predicate>qudt:applicableUnit</predicate>
</exclude>
</filters>
<outputFile>src/main/rdf/vocab/quantitykinds/VOCAB_QUDT-QUANTITY-KINDS-ALL-v2.1.ttl</outputFile>
<outputFile>src/main/rdf/vocab/quantitykinds/VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl</outputFile>
</singleFile>
</products>
</configuration>
Expand All @@ -184,10 +184,10 @@
<input>
<include>
target/inferred/applicableUnits.ttl
target/dist/vocab/quantitykinds/VOCAB_QUDT-QUANTITY-KINDS-ALL-v2.1.ttl
target/dist/vocab/quantitykinds/VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl
</include>
</input>
<outputFile>target/dist/vocab/quantitykinds/VOCAB_QUDT-QUANTITY-KINDS-ALL-v2.1.ttl</outputFile>
<outputFile>target/dist/vocab/quantitykinds/VOCAB_QUDT-QUANTITY-KINDS-ALL.ttl</outputFile>
</singleFile>
</products>
</configuration>
Expand Down
File renamed without changes.
File renamed without changes.

Large diffs are not rendered by default.

0 comments on commit c6f7b34

Please sign in to comment.