Skip to content

Commit

Permalink
Merge branch 'main' into wip/mkdocs-build-strict
Browse files Browse the repository at this point in the history
  • Loading branch information
jnussbaum authored Apr 15, 2024
2 parents 6af2861 + c82749f commit f296600
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions webapi/src/main/resources/knora-ontologies/knora-base.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
rdf:type owl:Ontology ;
rdfs:label "The Knora base ontology"@en ;
:attachedToProject knora-admin:SystemProject ;
:ontologyVersion "knora-base v34" .
:ontologyVersion "knora-base v35" .


#################################################################
Expand Down Expand Up @@ -385,7 +385,7 @@
rdf:type owl:ObjectProperty ;
rdfs:label "hat Standoff Link zu"@de,
"has Standoff Link to"@en,
"a standoff lien vers"@fr,
"liens intégrés"@fr,
"ha standoff link verso"@it ;
rdfs:comment "Repräsentiert einen Link im Standoff Markup von einer Ressource zu einer anderen"@de,
"Represents a link in standoff markup from one resource to another."@en ;
Expand All @@ -400,7 +400,7 @@
rdf:type owl:ObjectProperty ;
rdfs:label "hat Standoff Link zu"@de,
"has Standoff Link to"@en,
"a standoff lien vers"@fr,
"liens intégrés"@fr,
"ha standoff link verso"@it ;
rdfs:comment "Repräsentiert einen Link im Standoff Markup von einer Ressource zu einer anderen"@de,
"Represents a link in standoff markup from one resource to another."@en ;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,7 @@ object KnoraBaseToApiV2ComplexTransformationRules extends OntologyTransformation
objectsWithLang = Map(
LanguageCodes.DE -> "hat eingehenden Verweis",
LanguageCodes.EN -> "has incoming link",
LanguageCodes.FR -> "liens entrants",
),
),
makePredicate(
Expand Down
2 changes: 1 addition & 1 deletion webapi/src/main/scala/org/knora/webapi/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ package object webapi {
* The version of `knora-base` and of the other built-in ontologies that this version of Knora requires.
* Must be the same as the object of `knora-base:ontologyVersion` in the `knora-base` ontology being used.
*/
val KnoraBaseVersion: String = "knora-base v34"
val KnoraBaseVersion: String = "knora-base v35"

/**
* `IRI` is a synonym for `String`, used to improve code readability.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ object RepositoryUpdatePlan {
PluginForKnoraBaseVersion(versionNumber = 32, plugin = new MigrateOnlyBuiltInGraphs()),
PluginForKnoraBaseVersion(versionNumber = 33, plugin = new MigrateOnlyBuiltInGraphs()),
PluginForKnoraBaseVersion(versionNumber = 34, plugin = new MigrateOnlyBuiltInGraphs()),
PluginForKnoraBaseVersion(versionNumber = 35, plugin = new MigrateOnlyBuiltInGraphs()),
)

/**
Expand Down

0 comments on commit f296600

Please sign in to comment.