Skip to content

Commit

Permalink
Prepare for the 0.2.11 release (#1708)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamrecursion committed Apr 28, 2021
1 parent 005f663 commit 4ba8503
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
40 changes: 40 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
# Enso 0.2.11 (2021-04-28)

## Tooling

- Added a feature that allows the tooling to install
[GraalVM](https://graalvm.org) language implementations to existing runtimes
([#1660](https://github.com/enso-org/enso/pull/1660)).
- Fixed an issue that would prevent the language server from starting if
projects had clashing identifiers
([#1665](https://github.com/enso-org/enso/pull/1665)).
- Added support to the language server for suggesting the module types
themselves.
- Added support for reporting errors in visualisation code, making it much
simpler to write new visualisation preprocessors
([#1671](https://github.com/enso-org/enso/pull/1671)). Previously the
preprocessor would fail without any information as to what went wrong.
- Fixed an issue where the language server's update state could become
desynchronised with the IDE's one
([#1691](https://github.com/enso-org/enso/pull/1691)). This meant that the IDE
and language server didn't agree on what had been sent, and hence the IDE
would miss out on certain updates.
- Added a schema version to the suggestions database, allowing the tooling to
detect out-of-date versions and upgrade them
([#1703](https://github.com/enso-org/enso/pull/1703)).
- Added detailed logging to the tooling boot sequence to help us debug issues
that users are seeing ([#1704](https://github.com/enso-org/enso/pull/1704)).

## Libraries

- Fixed some inconsistent naming around the `Maybe` type
([#1666](https://github.com/enso-org/enso/pull/1666)).
- Added the `.sum` method for vectors of numeric types
([#1702](https://github.com/enso-org/enso/pull/1702)).

## Known Issues

- This is a beta release, so please see the
[issue tracker](https://github.com/enso-org/enso/issues?q=is%3Aissue+is%3Aopen+created%3A%3C2021-04-28)
for issues opened before the release date.

# Enso 0.2.10 (2021-04-07)

## Interpreter/Runtime
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ val scalacVersion = "2.13.5"
val rustVersion = "1.40.0-nightly (b520af6fd 2019-11-03)"
val graalVersion = "21.0.0.2"
val javaVersion = "11"
val ensoVersion = "0.2.11-SNAPSHOT" // Note [Engine And Launcher Version]
val ensoVersion = "0.2.11" // Note [Engine And Launcher Version]

/* Note [Engine And Launcher Version]
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down

0 comments on commit 4ba8503

Please sign in to comment.