Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(version-upgrade): add upgrade plugin for ArchiveRepresentation and DeletedResource (DEV-467) #1992

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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