mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 13:02:07 +03:00
parent
fea394ee5c
commit
1c4ad86923
@ -17,6 +17,16 @@
|
||||
[1815]: https://github.com/enso-org/ide/pull/1815
|
||||
[1825]: https://github.com/enso-org/ide/pull/1825
|
||||
|
||||
<br/>![New Features](/docs/assets/tags/new_features.svg)
|
||||
|
||||
#### Enso Compiler
|
||||
|
||||
- [Updated Enso engine to version 0.2.30][engine-0.2.30]. 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).
|
||||
|
||||
[engine-0.2.30]: https://github.com/enso-org/enso/blob/main/RELEASES.md
|
||||
|
||||
# Enso 2.0.0-alpha.16 (2021-09-16)
|
||||
|
||||
<br/>![New Features](/docs/assets/tags/new_features.svg)
|
||||
|
@ -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.29'
|
||||
const ENGINE = '0.2.30'
|
||||
const ID = '"Developer ID Application: New Byte Order Sp. z o. o. (NM77WTZJFQ)"'
|
||||
// Placeholder name for temporary archives.
|
||||
const tmpArchive = 'temporary_archive.zip'
|
||||
|
@ -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.29',
|
||||
version: '0.2.30',
|
||||
target: (await get_build_config()).target,
|
||||
}
|
||||
|
||||
|
@ -24,14 +24,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.29";
|
||||
pub const ENGINE_VERSION_SUPPORTED : &str = "^0.2.30";
|
||||
|
||||
/// 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.29";
|
||||
pub const ENGINE_VERSION_FOR_NEW_PROJECTS : &str = "0.2.30";
|
||||
/// The minimum edition that is guaranteed to work with the IDE.
|
||||
pub const MINIMUM_EDITION_SUPPORTED : &str = "2021.17";
|
||||
pub const MINIMUM_EDITION_SUPPORTED : &str = "2021.18";
|
||||
|
||||
/// The name of the module initially opened in the project view.
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user