Skip to content

Commit

Permalink
Bump engine to 0.2.27. (enso-org/ide#1811)
Browse files Browse the repository at this point in the history
Original commit: enso-org/ide@27ef2fc
  • Loading branch information
MichaelMauderer authored Aug 27, 2021
1 parent 6592c3c commit 1982e6e
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
10 changes: 10 additions & 0 deletions ide/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Next Release

<br/>![New Features](/docs/assets/tags/new_features.svg)

#### Enso Compiler

- [Updated Enso engine to version 0.2.27][1811]. 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).

[1811]: https://github.com/enso-org/ide/pull/1811

# Enso 2.0.0-alpha.12 (2021-08-13)

<br/>![New Features](/docs/assets/tags/new_features.svg)
Expand Down
2 changes: 1 addition & 1 deletion ide/src/js/lib/client/tasks/signArchives.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.26'
const ENGINE = '0.2.27'
const ID = '"Developer ID Application: New Byte Order Sp. z o. o. (NM77WTZJFQ)"'
// Placeholder name for temporary archives.
const tmpArchive = 'temporary_archive.zip'
Expand Down
2 changes: 1 addition & 1 deletion ide/src/js/lib/project-manager/src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function get_project_manager_url(): Promise<string> {
// 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.26'
const version = '0.2.27'
let base_url: string = 'https://github.com/enso-org/'
base_url += 'enso/releases/download/'
base_url += `enso-${version}/enso-project-manager-${version}`
Expand Down
2 changes: 1 addition & 1 deletion ide/src/rust/ide/lib/parser/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use std::path::PathBuf;
const PARSER_PATH: &str = "./pkg/scala-parser.js";

/// Commit from `enso` repository that will be used to obtain parser from.
const PARSER_COMMIT: &str = "44ef29a3b70ccada491ac71e199f323211c997d3";
const PARSER_COMMIT: &str = "649fe33ccf148d47deb6ba6a06f3babc48078e3e";

/// Magic code that needs to be prepended to ScalaJS generated parser due to:
/// https://github.com/scala-js/scala-js/issues/3677/
Expand Down
6 changes: 3 additions & 3 deletions ide/src/rust/ide/src/controller/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.26";
pub const ENGINE_VERSION_SUPPORTED : &str = "^0.2.27";

/// 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.26";
pub const ENGINE_VERSION_FOR_NEW_PROJECTS : &str = "0.2.27";
/// The minimum edition that is guaranteed to work with the IDE.
pub const MINIMUM_EDITION_SUPPORTED : &str = "2021.14";
pub const MINIMUM_EDITION_SUPPORTED : &str = "2021.15";

/// The name of the module initially opened in the project view.
///
Expand Down
2 changes: 1 addition & 1 deletion ide/src/rust/ide/src/model/suggestion_database/example.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ lazy_static! {
pub static ref EXAMPLES:Vec<Example> = vec!
[ Example
{ name : "Parse JSON".to_owned()
, code : r#"Json.parse "{\"a\":10, \"b\": 20}""#.to_owned()
, code : r#"Json.parse '{\"a\":10, \"b\": 20}'"#.to_owned()
, imports : default()
, documentation_html : documentation_html_from("An example showing how to parse string to Json structure.")
}
Expand Down

0 comments on commit 1982e6e

Please sign in to comment.