From d30edbc7046fe242b78c7e9271f4ef202b1bdeb4 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sun, 24 Nov 2024 19:23:07 +0000 Subject: [PATCH] chore(release): 0.22.0 [skip ci] ## [0.22.0](https://github.com/Safe-DS/DSL/compare/v0.21.1...v0.22.0) (2024-11-24) ### Features * categorize API elements ([#1263](https://github.com/Safe-DS/DSL/issues/1263)) ([d0d971e](https://github.com/Safe-DS/DSL/commit/d0d971e161c31cb527f2299e76c87557d4597b5f)), closes [#1243](https://github.com/Safe-DS/DSL/issues/1243) * disable inlay hints for assignee types by default ([#1260](https://github.com/Safe-DS/DSL/issues/1260)) ([a651ade](https://github.com/Safe-DS/DSL/commit/a651adea9383f10f7f63293413ac251f430503d3)) * improve error messages from linker ([#1272](https://github.com/Safe-DS/DSL/issues/1272)) ([eddd868](https://github.com/Safe-DS/DSL/commit/eddd86859e8173b8d7f3ea65008b7a07f8504f5e)), closes [#1268](https://github.com/Safe-DS/DSL/issues/1268) * output statement ([#1262](https://github.com/Safe-DS/DSL/issues/1262)) ([011ba31](https://github.com/Safe-DS/DSL/commit/011ba31ec1d54629ec083807c23e6de04a004580)), closes [#1259](https://github.com/Safe-DS/DSL/issues/1259) * remove schema concept from grammar ([#1273](https://github.com/Safe-DS/DSL/issues/1273)) ([1a3bf80](https://github.com/Safe-DS/DSL/commit/1a3bf8047bf04c605a63853075f94641fe6325f9)), closes [#1133](https://github.com/Safe-DS/DSL/issues/1133) --- package-lock.json | 6 +++--- packages/safe-ds-cli/package.json | 2 +- packages/safe-ds-lang/CHANGELOG.md | 10 ++++++++++ packages/safe-ds-lang/package.json | 2 +- packages/safe-ds-vscode/CHANGELOG.md | 10 ++++++++++ packages/safe-ds-vscode/package.json | 2 +- 6 files changed, 26 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index c462954b9..0a15b8a7c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14460,7 +14460,7 @@ }, "packages/safe-ds-cli": { "name": "@safe-ds/cli", - "version": "0.21.1", + "version": "0.22.0", "license": "MIT", "dependencies": { "@safe-ds/lang": ">=0.3.0", @@ -14586,7 +14586,7 @@ }, "packages/safe-ds-lang": { "name": "@safe-ds/lang", - "version": "0.21.1", + "version": "0.22.0", "license": "MIT", "dependencies": { "chevrotain": "^11.0.3", @@ -14689,7 +14689,7 @@ }, "packages/safe-ds-vscode": { "name": "safe-ds", - "version": "0.21.1", + "version": "0.22.0", "license": "MIT", "dependencies": { "semver": "^7.6.3", diff --git a/packages/safe-ds-cli/package.json b/packages/safe-ds-cli/package.json index cc1bf6ece..42e32635b 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.21.1", + "version": "0.22.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 b3fef5c7a..6ab033763 100644 --- a/packages/safe-ds-lang/CHANGELOG.md +++ b/packages/safe-ds-lang/CHANGELOG.md @@ -1,3 +1,13 @@ +## [0.22.0](https://github.com/Safe-DS/DSL/compare/v0.21.1...v0.22.0) (2024-11-24) + +### Features + +* categorize API elements ([#1263](https://github.com/Safe-DS/DSL/issues/1263)) ([d0d971e](https://github.com/Safe-DS/DSL/commit/d0d971e161c31cb527f2299e76c87557d4597b5f)), closes [#1243](https://github.com/Safe-DS/DSL/issues/1243) +* disable inlay hints for assignee types by default ([#1260](https://github.com/Safe-DS/DSL/issues/1260)) ([a651ade](https://github.com/Safe-DS/DSL/commit/a651adea9383f10f7f63293413ac251f430503d3)) +* improve error messages from linker ([#1272](https://github.com/Safe-DS/DSL/issues/1272)) ([eddd868](https://github.com/Safe-DS/DSL/commit/eddd86859e8173b8d7f3ea65008b7a07f8504f5e)), closes [#1268](https://github.com/Safe-DS/DSL/issues/1268) +* output statement ([#1262](https://github.com/Safe-DS/DSL/issues/1262)) ([011ba31](https://github.com/Safe-DS/DSL/commit/011ba31ec1d54629ec083807c23e6de04a004580)), closes [#1259](https://github.com/Safe-DS/DSL/issues/1259) +* remove schema concept from grammar ([#1273](https://github.com/Safe-DS/DSL/issues/1273)) ([1a3bf80](https://github.com/Safe-DS/DSL/commit/1a3bf8047bf04c605a63853075f94641fe6325f9)), closes [#1133](https://github.com/Safe-DS/DSL/issues/1133) + ## [0.21.1](https://github.com/Safe-DS/DSL/compare/v0.21.0...v0.21.1) (2024-11-05) ### Bug Fixes diff --git a/packages/safe-ds-lang/package.json b/packages/safe-ds-lang/package.json index d8f95425d..d6fe0fdfd 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.21.1", + "version": "0.22.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 b3fef5c7a..6ab033763 100644 --- a/packages/safe-ds-vscode/CHANGELOG.md +++ b/packages/safe-ds-vscode/CHANGELOG.md @@ -1,3 +1,13 @@ +## [0.22.0](https://github.com/Safe-DS/DSL/compare/v0.21.1...v0.22.0) (2024-11-24) + +### Features + +* categorize API elements ([#1263](https://github.com/Safe-DS/DSL/issues/1263)) ([d0d971e](https://github.com/Safe-DS/DSL/commit/d0d971e161c31cb527f2299e76c87557d4597b5f)), closes [#1243](https://github.com/Safe-DS/DSL/issues/1243) +* disable inlay hints for assignee types by default ([#1260](https://github.com/Safe-DS/DSL/issues/1260)) ([a651ade](https://github.com/Safe-DS/DSL/commit/a651adea9383f10f7f63293413ac251f430503d3)) +* improve error messages from linker ([#1272](https://github.com/Safe-DS/DSL/issues/1272)) ([eddd868](https://github.com/Safe-DS/DSL/commit/eddd86859e8173b8d7f3ea65008b7a07f8504f5e)), closes [#1268](https://github.com/Safe-DS/DSL/issues/1268) +* output statement ([#1262](https://github.com/Safe-DS/DSL/issues/1262)) ([011ba31](https://github.com/Safe-DS/DSL/commit/011ba31ec1d54629ec083807c23e6de04a004580)), closes [#1259](https://github.com/Safe-DS/DSL/issues/1259) +* remove schema concept from grammar ([#1273](https://github.com/Safe-DS/DSL/issues/1273)) ([1a3bf80](https://github.com/Safe-DS/DSL/commit/1a3bf8047bf04c605a63853075f94641fe6325f9)), closes [#1133](https://github.com/Safe-DS/DSL/issues/1133) + ## [0.21.1](https://github.com/Safe-DS/DSL/compare/v0.21.0...v0.21.1) (2024-11-05) ### Bug Fixes diff --git a/packages/safe-ds-vscode/package.json b/packages/safe-ds-vscode/package.json index c8b392fba..a3fd0a2bc 100644 --- a/packages/safe-ds-vscode/package.json +++ b/packages/safe-ds-vscode/package.json @@ -1,6 +1,6 @@ { "name": "safe-ds", - "version": "0.21.1", + "version": "0.22.0", "private": true, "description": "Statically checked Data Science programs.", "author": {