From 84fc98e6c08b25e9f29bc008fd8e158d6ad14c57 Mon Sep 17 00:00:00 2001 From: Michael Mauderer Date: Thu, 2 Sep 2021 22:45:04 +0100 Subject: [PATCH] Bump engine to 0.2.28. (https://github.com/enso-org/ide/pull/1829) Original commit: https://github.com/enso-org/ide/commit/864e3f94971861e54af9d30214cdad7aa92d28b6 --- ide/CHANGELOG.md | 8 ++++++++ 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, 13 insertions(+), 5 deletions(-) diff --git a/ide/CHANGELOG.md b/ide/CHANGELOG.md index 43b850bbc31a..55e78558f13e 100644 --- a/ide/CHANGELOG.md +++ b/ide/CHANGELOG.md @@ -10,6 +10,14 @@ [1817]: https://github.com/enso-org/ide/pull/1817 +#### Enso Compiler + +- [Updated Enso engine to version 0.2.28][1829]. If you're interested in the + enhancements and fixes made to the Enso compiler, you can find their release + notes [here](https://github.com/enso-org/enso/blob/main/RELEASES.md). + +[1829]: https://github.com/enso-org/ide/pull/1829 + # Enso 2.0.0-alpha.13 (2021-08-27)
![New Features](/docs/assets/tags/new_features.svg) diff --git a/ide/src/js/lib/client/tasks/signArchives.js b/ide/src/js/lib/client/tasks/signArchives.js index 790998f1e19b..a56aca2ce5f2 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.27' +const ENGINE = '0.2.28' 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 2fde5e4db523..e866f251db90 100644 --- a/ide/src/js/lib/project-manager/src/build.ts +++ b/ide/src/js/lib/project-manager/src/build.ts @@ -172,7 +172,7 @@ async function main() { // 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 buildInfo: BuildInfo = { - version: '0.2.27', + version: '0.2.28', target: (await get_build_config()).target, } diff --git a/ide/src/rust/ide/src/controller/project.rs b/ide/src/rust/ide/src/controller/project.rs index 0c97fb9ec3c9..c647c30fcc8c 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.27"; +pub const ENGINE_VERSION_SUPPORTED : &str = "^0.2.28"; /// 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.27"; +pub const ENGINE_VERSION_FOR_NEW_PROJECTS : &str = "0.2.28"; /// The minimum edition that is guaranteed to work with the IDE. -pub const MINIMUM_EDITION_SUPPORTED : &str = "2021.15"; +pub const MINIMUM_EDITION_SUPPORTED : &str = "2021.16"; /// The name of the module initially opened in the project view. ///