diff --git a/package-lock.json b/package-lock.json index 9cc22a45d..f96dd6ebc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14295,7 +14295,7 @@ }, "packages/safe-ds-cli": { "name": "@safe-ds/cli", - "version": "0.10.0", + "version": "0.11.0", "license": "MIT", "dependencies": { "@safe-ds/lang": ">=0.3.0", @@ -14343,7 +14343,7 @@ }, "packages/safe-ds-lang": { "name": "@safe-ds/lang", - "version": "0.10.0", + "version": "0.11.0", "license": "MIT", "dependencies": { "chevrotain": "^11.0.3", @@ -14368,7 +14368,7 @@ }, "packages/safe-ds-vscode": { "name": "safe-ds", - "version": "0.10.0", + "version": "0.11.0", "license": "MIT", "dependencies": { "vscode-languageclient": "^9.0.1" diff --git a/packages/safe-ds-cli/package.json b/packages/safe-ds-cli/package.json index f0c280fd8..4632e30db 100644 --- a/packages/safe-ds-cli/package.json +++ b/packages/safe-ds-cli/package.json @@ -1,6 +1,6 @@ { "name": "@safe-ds/cli", - "version": "0.10.0", + "version": "0.11.0", "description": "A command line interface for the Safe-DS DSL.", "author": { "name": "Lars Reimann", diff --git a/packages/safe-ds-lang/CHANGELOG.md b/packages/safe-ds-lang/CHANGELOG.md index 51998334e..6cf6ef4c9 100644 --- a/packages/safe-ds-lang/CHANGELOG.md +++ b/packages/safe-ds-lang/CHANGELOG.md @@ -1,3 +1,26 @@ +## [0.11.0](https://github.com/Safe-DS/DSL/compare/v0.10.0...v0.11.0) (2024-04-10) + + +### Features + +* add `toFloat` methods for `Int` and `String` ([#1018](https://github.com/Safe-DS/DSL/issues/1018)) ([55a2050](https://github.com/Safe-DS/DSL/commit/55a2050563028b04d88d4c73812ad64d0d001a30)) +* fine-grained control over inlay hints for parameter names ([#1016](https://github.com/Safe-DS/DSL/issues/1016)) ([2667caf](https://github.com/Safe-DS/DSL/commit/2667cafc15b53a5f11dcf29e2fc7fa14223498d8)) +* messaging service ([#1004](https://github.com/Safe-DS/DSL/issues/1004)) ([dcf4ecf](https://github.com/Safe-DS/DSL/commit/dcf4ecf54fa2c05acac18013ccfc2d5f51a033e4)) +* semantic highlighting of block lambda results ([#1011](https://github.com/Safe-DS/DSL/issues/1011)) ([228733c](https://github.com/Safe-DS/DSL/commit/228733c608cddfaf5145461cfa9043845b0f68f8)) +* start runner in language server ([#1006](https://github.com/Safe-DS/DSL/issues/1006)) ([ef4bb6f](https://github.com/Safe-DS/DSL/commit/ef4bb6fda4699939be9a04b7a25f836ec010b2f6)) +* stubs for int conversions ([#1008](https://github.com/Safe-DS/DSL/issues/1008)) ([b635f5a](https://github.com/Safe-DS/DSL/commit/b635f5a63902fab94bedbcd7cc28aaa5222878d8)) +* support relative paths ([#1019](https://github.com/Safe-DS/DSL/issues/1019)) ([3d3f28d](https://github.com/Safe-DS/DSL/commit/3d3f28d27442195c3a9ab9fb836ceafd41b8e5a7)) +* trigger EDA tool via code lenses ([#1010](https://github.com/Safe-DS/DSL/issues/1010)) ([eb6e4b6](https://github.com/Safe-DS/DSL/commit/eb6e4b6dec48fb64ad149b47e2b3065069d4fd99)) + + +### Bug Fixes + +* consumption of source maps ([#1005](https://github.com/Safe-DS/DSL/issues/1005)) ([ea3da87](https://github.com/Safe-DS/DSL/commit/ea3da8741d806ce58993aa8904d0c76ebc44ed2c)) +* disable global EDA panel cache ([#1014](https://github.com/Safe-DS/DSL/issues/1014)) ([f888027](https://github.com/Safe-DS/DSL/commit/f8880276623d2cb7e27a5e4f43aa8c7f3b145015)), closes [/github.com/Safe-DS/DSL/issues/986#issuecomment-2042731653](https://github.com/Safe-DS//github.com/Safe-DS/DSL/issues/986/issues/issuecomment-2042731653) +* generation of dynamic member function calls with memoization + propagating of impurity information across chained calls ([#1015](https://github.com/Safe-DS/DSL/issues/1015)) ([19015c3](https://github.com/Safe-DS/DSL/commit/19015c34f797d3760a3279ba1bccda8ffe17d9f2)), closes [#1012](https://github.com/Safe-DS/DSL/issues/1012) [#1013](https://github.com/Safe-DS/DSL/issues/1013) +* only spawn one runner process and shut it down properly ([#1009](https://github.com/Safe-DS/DSL/issues/1009)) ([2c72cee](https://github.com/Safe-DS/DSL/commit/2c72cee3d8c25d9c57309d9d33197755e833bcf9)) +* show EDA tool for `TaggedTable` and `TimeSeries` ([#1017](https://github.com/Safe-DS/DSL/issues/1017)) ([ffae98a](https://github.com/Safe-DS/DSL/commit/ffae98a1e4d5aae63942d1e794c898f401374915)) + ## [0.10.0](https://github.com/Safe-DS/DSL/compare/v0.9.0...v0.10.0) (2024-04-06) diff --git a/packages/safe-ds-lang/package.json b/packages/safe-ds-lang/package.json index 6a2a5b984..a2f8025ef 100644 --- a/packages/safe-ds-lang/package.json +++ b/packages/safe-ds-lang/package.json @@ -1,6 +1,6 @@ { "name": "@safe-ds/lang", - "version": "0.10.0", + "version": "0.11.0", "description": "A language server for the Safe-DS DSL.", "author": { "name": "Lars Reimann", diff --git a/packages/safe-ds-vscode/CHANGELOG.md b/packages/safe-ds-vscode/CHANGELOG.md index 51998334e..6cf6ef4c9 100644 --- a/packages/safe-ds-vscode/CHANGELOG.md +++ b/packages/safe-ds-vscode/CHANGELOG.md @@ -1,3 +1,26 @@ +## [0.11.0](https://github.com/Safe-DS/DSL/compare/v0.10.0...v0.11.0) (2024-04-10) + + +### Features + +* add `toFloat` methods for `Int` and `String` ([#1018](https://github.com/Safe-DS/DSL/issues/1018)) ([55a2050](https://github.com/Safe-DS/DSL/commit/55a2050563028b04d88d4c73812ad64d0d001a30)) +* fine-grained control over inlay hints for parameter names ([#1016](https://github.com/Safe-DS/DSL/issues/1016)) ([2667caf](https://github.com/Safe-DS/DSL/commit/2667cafc15b53a5f11dcf29e2fc7fa14223498d8)) +* messaging service ([#1004](https://github.com/Safe-DS/DSL/issues/1004)) ([dcf4ecf](https://github.com/Safe-DS/DSL/commit/dcf4ecf54fa2c05acac18013ccfc2d5f51a033e4)) +* semantic highlighting of block lambda results ([#1011](https://github.com/Safe-DS/DSL/issues/1011)) ([228733c](https://github.com/Safe-DS/DSL/commit/228733c608cddfaf5145461cfa9043845b0f68f8)) +* start runner in language server ([#1006](https://github.com/Safe-DS/DSL/issues/1006)) ([ef4bb6f](https://github.com/Safe-DS/DSL/commit/ef4bb6fda4699939be9a04b7a25f836ec010b2f6)) +* stubs for int conversions ([#1008](https://github.com/Safe-DS/DSL/issues/1008)) ([b635f5a](https://github.com/Safe-DS/DSL/commit/b635f5a63902fab94bedbcd7cc28aaa5222878d8)) +* support relative paths ([#1019](https://github.com/Safe-DS/DSL/issues/1019)) ([3d3f28d](https://github.com/Safe-DS/DSL/commit/3d3f28d27442195c3a9ab9fb836ceafd41b8e5a7)) +* trigger EDA tool via code lenses ([#1010](https://github.com/Safe-DS/DSL/issues/1010)) ([eb6e4b6](https://github.com/Safe-DS/DSL/commit/eb6e4b6dec48fb64ad149b47e2b3065069d4fd99)) + + +### Bug Fixes + +* consumption of source maps ([#1005](https://github.com/Safe-DS/DSL/issues/1005)) ([ea3da87](https://github.com/Safe-DS/DSL/commit/ea3da8741d806ce58993aa8904d0c76ebc44ed2c)) +* disable global EDA panel cache ([#1014](https://github.com/Safe-DS/DSL/issues/1014)) ([f888027](https://github.com/Safe-DS/DSL/commit/f8880276623d2cb7e27a5e4f43aa8c7f3b145015)), closes [/github.com/Safe-DS/DSL/issues/986#issuecomment-2042731653](https://github.com/Safe-DS//github.com/Safe-DS/DSL/issues/986/issues/issuecomment-2042731653) +* generation of dynamic member function calls with memoization + propagating of impurity information across chained calls ([#1015](https://github.com/Safe-DS/DSL/issues/1015)) ([19015c3](https://github.com/Safe-DS/DSL/commit/19015c34f797d3760a3279ba1bccda8ffe17d9f2)), closes [#1012](https://github.com/Safe-DS/DSL/issues/1012) [#1013](https://github.com/Safe-DS/DSL/issues/1013) +* only spawn one runner process and shut it down properly ([#1009](https://github.com/Safe-DS/DSL/issues/1009)) ([2c72cee](https://github.com/Safe-DS/DSL/commit/2c72cee3d8c25d9c57309d9d33197755e833bcf9)) +* show EDA tool for `TaggedTable` and `TimeSeries` ([#1017](https://github.com/Safe-DS/DSL/issues/1017)) ([ffae98a](https://github.com/Safe-DS/DSL/commit/ffae98a1e4d5aae63942d1e794c898f401374915)) + ## [0.10.0](https://github.com/Safe-DS/DSL/compare/v0.9.0...v0.10.0) (2024-04-06) diff --git a/packages/safe-ds-vscode/package.json b/packages/safe-ds-vscode/package.json index fcc7c1c67..355146bc4 100644 --- a/packages/safe-ds-vscode/package.json +++ b/packages/safe-ds-vscode/package.json @@ -1,6 +1,6 @@ { "name": "safe-ds", - "version": "0.10.0", + "version": "0.11.0", "private": true, "description": "Statically checked Data Science programs.", "author": {