diff --git a/Source/SelfService/Web/apis/solutions/api.ts b/Source/SelfService/Web/apis/solutions/api.ts index 8e8ea36f3..66798dcf9 100644 --- a/Source/SelfService/Web/apis/solutions/api.ts +++ b/Source/SelfService/Web/apis/solutions/api.ts @@ -157,26 +157,14 @@ export function getServerUrlPrefix(): string { export function getLatestRuntimeInfo(): LatestRuntimeInfo { return { - image: 'dolittle/runtime:9.3.2', - changelog: 'https://github.com/dolittle/Runtime/releases/tag/v9.3.2', + image: 'dolittle/runtime:9.3.3', + changelog: 'https://github.com/dolittle/Runtime/releases/tag/v9.3.3', }; } export function getRuntimes(): LatestRuntimeInfo[] { return [ - getLatestRuntimeInfo(), - { - image: 'dolittle/runtime:9.3.1', - changelog: 'https://github.com/dolittle/Runtime/releases/tag/v9.3.1', - }, - { - image: 'dolittle/runtime:9.2.2', - changelog: 'https://github.com/dolittle/Runtime/releases/tag/v9.2.2', - }, - { - image: 'dolittle/runtime:9.2.1', - changelog: 'https://github.com/dolittle/Runtime/releases/tag/v9.2.1', - } + getLatestRuntimeInfo() ]; }