From fe70ec5d445d733038564d81357c78aedf5c7e0e Mon Sep 17 00:00:00 2001 From: Remi Schnekenburger Date: Thu, 27 Jun 2024 12:09:32 +0200 Subject: [PATCH] Bump API version to 1.90.2 (#13849) fixes eclipse-theia#13770 Contributed on behalf of STMicroelectronics Signed-off-by: Remi Schnekenburger --- CHANGELOG.md | 2 ++ dev-packages/application-package/src/api.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 141f98b95fe24..31ba9d5494b0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ - [debug] stub activeStackItem and related change event in debug namespace [#13847](https://github.com/eclipse-theia/theia/pull/13847) - contributed on behalf of STMicroelectronics +- [application-package] bumped the default supported API from `1.89.1` to `1.90.2` [#13849](https://github.com/eclipse-theia/theia/pull/13849) - contributed on behalf of STMicroelectronics + [Breaking Changes:](#breaking_changes_not_yet_released) - [filesystem] Adjusted the "Save As" mechanism. It now assumes that `Saveable.getSnapshot()` returns a full snapshot of the editor model [#13689](https://github.com/eclipse-theia/theia/pull/13689). diff --git a/dev-packages/application-package/src/api.ts b/dev-packages/application-package/src/api.ts index ccd0a285cd711..e64c5ac4b140e 100644 --- a/dev-packages/application-package/src/api.ts +++ b/dev-packages/application-package/src/api.ts @@ -18,4 +18,4 @@ * The default supported API version the framework supports. * The version should be in the format `x.y.z`. */ -export const DEFAULT_SUPPORTED_API_VERSION = '1.89.1'; +export const DEFAULT_SUPPORTED_API_VERSION = '1.90.2';