From 4457160c04fb84a4bef7dcd306c7748525708df8 Mon Sep 17 00:00:00 2001 From: Adam Obuchowicz Date: Thu, 5 Aug 2021 21:40:25 +0200 Subject: [PATCH] Bump engine version to 0.2.21 (https://github.com/enso-org/ide/pull/1762) Original commit: https://github.com/enso-org/ide/commit/312a5ee3728ba93559bbfb18bc9ca636725b09cb --- ide/CHANGELOG.md | 4 ++-- ide/src/js/lib/client/tasks/signArchives.js | 2 +- ide/src/js/lib/project-manager/src/build.ts | 2 +- ide/src/rust/ide/src/controller/project.rs | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ide/CHANGELOG.md b/ide/CHANGELOG.md index bf6b6505c284..051ba266cba8 100644 --- a/ide/CHANGELOG.md +++ b/ide/CHANGELOG.md @@ -14,7 +14,7 @@ these updates be shipped in a stable release before the end of the year. #### Enso Compiler -- [Updated Enso engine to version 0.2.19][1726]. If you're interested in the +- [Updated Enso engine to version 0.2.21][1762]. If you're interested in the enhancements and fixes made to the Enso compiler, you can find out more details in [the engine release notes](https://github.com/enso-org/enso/blob/main/RELEASES.md). @@ -30,7 +30,7 @@ these updates be shipped in a stable release before the end of the year.
[1700]: https://github.com/enso-org/ide/pull/1700 -[1726]: https://github.com/enso-org/ide/pull/1726 +[1726]: https://github.com/enso-org/ide/pull/1762 [1743]: https://github.com/enso-org/ide/pull/1743 [1744]: https://github.com/enso-org/ide/pull/1744 diff --git a/ide/src/js/lib/client/tasks/signArchives.js b/ide/src/js/lib/client/tasks/signArchives.js index 3311cf07db20..36ba5df8b08a 100644 --- a/ide/src/js/lib/client/tasks/signArchives.js +++ b/ide/src/js/lib/client/tasks/signArchives.js @@ -22,7 +22,7 @@ const resRoot = path.join(contentRoot, 'Resources') // TODO: Refactor this once we have a better wau to get the used engine version. // See the tracking issue for more information https://github.com/enso-org/ide/issues/1359 -const ENGINE = '0.2.19' +const ENGINE = '0.2.21' const ID = '"Developer ID Application: New Byte Order Sp. z o. o. (NM77WTZJFQ)"' // Placeholder name for temporary archives. const tmpArchive = 'temporary_archive.zip' diff --git a/ide/src/js/lib/project-manager/src/build.ts b/ide/src/js/lib/project-manager/src/build.ts index 4dd2a07d2353..3eb75a0647c3 100644 --- a/ide/src/js/lib/project-manager/src/build.ts +++ b/ide/src/js/lib/project-manager/src/build.ts @@ -44,7 +44,7 @@ async function get_project_manager_url(): Promise { // This constant MUST be synchronized with `ENGINE` constant in src/js/lib/client/tasks/signArchives.js. // Also it is usually a good idea to synchronize it with `ENGINE_VERSION_FOR_NEW_PROJECTS` in // src/rust/ide/src/controller/project.rs. See also https://github.com/enso-org/ide/issues/1359 - const version = '0.2.19' + const version = '0.2.21' let base_url: string = 'https://github.com/enso-org/' base_url += 'enso/releases/download/' base_url += `enso-${version}/enso-project-manager-${version}` diff --git a/ide/src/rust/ide/src/controller/project.rs b/ide/src/rust/ide/src/controller/project.rs index 8b39445336cb..256abf8bb5d8 100644 --- a/ide/src/rust/ide/src/controller/project.rs +++ b/ide/src/rust/ide/src/controller/project.rs @@ -25,14 +25,14 @@ pub const COMPILING_STDLIB_LABEL:&str = "Compiling standard library. It can take /// The requirements for Engine's version, in format understandable by /// [`semver::VersionReq::parse`]. -pub const ENGINE_VERSION_SUPPORTED : &str = "^0.2.19"; +pub const ENGINE_VERSION_SUPPORTED : &str = "^0.2.21"; /// The Engine version used in projects created in IDE. // Usually it is a good idea to synchronize this version with the bundled Engine version in // src/js/lib/project-manager/src/build.ts. See also https://github.com/enso-org/ide/issues/1359 -pub const ENGINE_VERSION_FOR_NEW_PROJECTS : &str = "0.2.19"; +pub const ENGINE_VERSION_FOR_NEW_PROJECTS : &str = "0.2.21"; /// The minimum edition that is guaranteed to work with the IDE. -pub const MINIMUM_EDITION_SUPPORTED : &str = "2021.6"; +pub const MINIMUM_EDITION_SUPPORTED : &str = "2021.9"; /// The name of the module initially opened in the project view. ///