Skip to content
This repository was archived by the owner on Dec 28, 2021. It is now read-only.

Commit f54f57b

Browse files
Bump engine to 0.2.15.
1 parent 0ee7b52 commit f54f57b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/js/lib/client/tasks/signArchives.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const resRoot = path.join(contentRoot, 'Resources')
2222

2323
// TODO: Refactor this once we have a better wau to get the used engine version.
2424
// See the tracking issue for more information https://github.com/enso-org/ide/issues/1359
25-
const ENGINE = '0.2.14'
25+
const ENGINE = '0.2.15'
2626
const ID = '"Developer ID Application: New Byte Order Sp. z o. o. (NM77WTZJFQ)"'
2727
// Placeholder name for temporary archives.
2828
const tmpArchive = 'temporary_archive.zip'

src/js/lib/project-manager/src/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async function get_project_manager_url(): Promise<string> {
4444
// This constant MUST be synchronized with `ENGINE` constant in src/js/lib/client/tasks/signArchives.js.
4545
// Also it is usually a good idea to synchronize it with `ENGINE_VERSION_FOR_NEW_PROJECTS` in
4646
// src/rust/ide/src/controller/project.rs. See also https://github.com/enso-org/ide/issues/1359
47-
const version = '0.2.14'
47+
const version = '0.2.15'
4848
let base_url: string = 'https://github.com/enso-org/'
4949
base_url += 'enso/releases/download/'
5050
base_url += `enso-${version}/enso-project-manager-${version}`

src/rust/ide/src/controller/project.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ pub const COMPILING_STDLIB_LABEL:&str = "Compiling standard library. It can take
2525

2626
/// The requirements for Engine's version, in format understandable by
2727
/// [`semver::VersionReq::parse`].
28-
pub const ENGINE_VERSION_SUPPORTED : &str = "^0.2.141";
28+
pub const ENGINE_VERSION_SUPPORTED : &str = "^0.2.15";
2929

3030
/// The Engine version used in projects created in IDE.
3131
// Usually it is a good idea to synchronize this version with the bundled Engine version in
3232
// src/js/lib/project-manager/src/build.ts. See also https://github.com/enso-org/ide/issues/1359
33-
pub const ENGINE_VERSION_FOR_NEW_PROJECTS : &str = "0.2.14";
33+
pub const ENGINE_VERSION_FOR_NEW_PROJECTS : &str = "0.2.15";
3434

3535
/// The name of the module initially opened in the project view.
3636
///

0 commit comments

Comments
 (0)