Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(version-upgrade): add upgrade plugin for ArchiveRepresentation an…
…d DeletedResource (DEV-467) (#1992)
  • Loading branch information
BalduinLandolt committed Feb 4, 2022
1 parent 74d4344 commit e1566e9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion knora-ontologies/knora-base.ttl
Expand Up @@ -21,7 +21,7 @@

:attachedToProject knora-admin:SystemProject ;

:ontologyVersion "knora-base v13" .
:ontologyVersion "knora-base v14" .



Expand Down
2 changes: 1 addition & 1 deletion webapi/src/main/scala/org/knora/webapi/package.scala
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 v13"
val KnoraBaseVersion: String = "knora-base v14"

/**
* `IRI` is a synonym for `String`, used to improve code readability.
Expand Down
Expand Up @@ -47,7 +47,8 @@ object RepositoryUpdatePlan {
PluginForKnoraBaseVersion(
versionNumber = 13,
plugin = new UpgradePluginPR1921(featureFactoryConfig, log)
) // PR 1921
), // PR 1921
PluginForKnoraBaseVersion(versionNumber = 14, plugin = new NoopPlugin) // PR 1992
)

/**
Expand Down

0 comments on commit e1566e9

Please sign in to comment.