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

Commit

Permalink
Engine 0.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
farmaazon committed Mar 26, 2021
1 parent 93e70da commit 7e52671
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/js/lib/project-manager/src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async function get_project_manager_url(): Promise<string> {
console.log('webpack target ' + target_platform)
// Usually it is a good idea to synchronize this constant with `ENGINE_VERSION_FOR_NEW_PROJECTS` in
// src/rust/ide/src/ide/initializer.rs. See also https://github.com/enso-org/ide/issues/1359
const version = '0.2.8'
const version = '0.2.9'
let base_url: string = 'https://github.com/enso-org/'
base_url += 'enso/releases/download/'
base_url += `enso-${version}/enso-project-manager-${version}`
Expand Down
4 changes: 2 additions & 2 deletions src/rust/ide/src/ide/initializer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ use ensogl::system::web::platform::Platform;
// download required version of Engine. This should be handled properly when implementing
// https://github.com/enso-org/ide/issues/1034
const PROJECT_MANAGER_TIMEOUT_SEC : u64 = 2 * 60 * 60;
const ENGINE_VERSION_SUPPORTED : &str = "^0.2.8";
const ENGINE_VERSION_SUPPORTED : &str = "^0.2.9";

// 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
const ENGINE_VERSION_FOR_NEW_PROJECTS : &str = "0.2.8";
const ENGINE_VERSION_FOR_NEW_PROJECTS : &str = "0.2.9";



Expand Down

0 comments on commit 7e52671

Please sign in to comment.