Skip to content

Commit

Permalink
chore: prepare release of v0.1.0 of the VS code extension (#454)
Browse files Browse the repository at this point in the history
Closes #441.
Closes #453.

### Summary of Changes

* Link to [stable version of documentation](https://dsl.safe-ds.com)
* Improve presentation of [VS Code
extension](https://marketplace.visualstudio.com/items?itemName=Safe-DS.safe-ds)
* Change publisher to
[`Safe-DS`](https://marketplace.visualstudio.com/publishers/Safe-DS)
  • Loading branch information
lars-reimann authored Apr 7, 2023
1 parent 34edeb2 commit b920c38
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 33 deletions.
13 changes: 5 additions & 8 deletions DSL/com.larsreimann.safeds.vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
# Change Log
## [0.1.0](https://github.com/Safe-DS/Stdlib-Examples/commits/v0.1.0) (2023-04-07)

## [Unreleased]
### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security

### Features

* Initial release
2 changes: 1 addition & 1 deletion DSL/com.larsreimann.safeds.vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ A preview of the language support for the [Safe-DS][safe-ds-repo] DSL.

You need to install [OpenJDK 17 LTS][temurin].

[safe-ds-repo]: https://github.com/lars-reimann/safe-data-science
[safe-ds-repo]: https://github.com/Safe-DS/DSL
[temurin]: https://adoptium.net/temurin
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions DSL/com.larsreimann.safeds.vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

59 changes: 43 additions & 16 deletions DSL/com.larsreimann.safeds.vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
{
"name": "safe-ds",
"displayName": "Safe-DS",
"description": "Statically checked Data Science programs.",
"publisher": "larsreimann",
"repository": {
"url": "https://github.com/lars-reimann/safe-data-science"
},
"galleryBanner": {
"color": "#ffffff"
},
"version": "1.0.0",
"version": "0.1.0",
"publisher": "Safe-DS",
"engines": {
"vscode": "^1.77.0"
},
"displayName": "Safe-DS",
"description": "Statically checked Data Science programs.",
"categories": [
"Programming Languages",
"Machine Learning",
"Data Science"
],
"keywords": [
"dsl",
"static checking"
],
"galleryBanner": {
"color": "#e3e9e9"
},
"preview": true,
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
Expand All @@ -26,7 +29,9 @@
"Safe-DS",
"safe-ds",
"SafeDS",
"safeds"
"safeds",
"SDS",
"sds"
],
"extensions": [
".sdspipe",
Expand All @@ -48,11 +53,19 @@
"activationEvents": [
"onLanguage:safe-ds"
],
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "esbuild src/extension.ts --bundle --platform=node --external:vscode --outfile=dist/extension.js",
"vscode:package": "vsce package"
},
"badges": [
{
"url": "https://github.com/Safe-DS/DSL/actions/workflows/main.yml/badge.svg",
"href": "https://github.com/Safe-DS/DSL/actions/workflows/main.yml",
"description": "Main"
},
{
"url": "https://codecov.io/gh/Safe-DS/DSL/branch/main/graph/badge.svg?token=ma0ytglhO1",
"href": "https://codecov.io/gh/Safe-DS/DSL",
"description": "codecov"
}
],
"qna": "https://github.com/orgs/Safe-DS/discussions",
"dependencies": {
"vscode-languageclient": "^8.1.0"
},
Expand All @@ -62,5 +75,19 @@
"esbuild": "^0.17.14",
"typescript": "^5.0.3",
"vscode-test": "^1.6.1"
},
"scripts": {
"vscode:prepublish": "esbuild src/extension.ts --bundle --platform=node --external:vscode --outfile=dist/extension.js",
"vscode:package": "vsce package"
},
"icon": "img/safe-ds_logo_rounded.png",
"license": "MIT",
"homepage": "https://dsl.safe-ds.com",
"bugs": {
"url": "https://github.com/Safe-DS/DSL/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Safe-DS/DSL.git"
}
}
11 changes: 5 additions & 6 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
# Safe-DS DSL

[![Visual Studio Marketplace Version](https://img.shields.io/visual-studio-marketplace/v/larsreimann.safe-ds)](https://marketplace.visualstudio.com/items?itemName=larsreimann.safe-ds)
[![Visual Studio Marketplace Version](https://img.shields.io/visual-studio-marketplace/v/safe-ds.safe-ds)](https://marketplace.visualstudio.com/items?itemName=safe-ds.safe-ds)
[![Main](https://github.com/Safe-DS/DSL/actions/workflows/main.yml/badge.svg)](https://github.com/Safe-DS/DSL/actions/workflows/main.yml)
[![codecov](https://codecov.io/gh/Safe-DS/DSL/branch/main/graph/badge.svg?token=ma0ytglhO1)](https://codecov.io/gh/Safe-DS/DSL)
[![Documentation Status](https://readthedocs.org/projects/safe-ds-dsl/badge/?version=latest)](https://safe-ds-dsl.readthedocs.io/en/latest/?badge=latest)
[![Documentation Status](https://readthedocs.org/projects/safe-ds-dsl/badge/?version=stable)](https://dsl.safe-ds.com)

Safely develop Data Science programs with a statically checked [DSL][dsl].
Safely develop Data Science programs with a statically checked.

You can find the full documentation [here][docs].
## Documentation

[dsl]: language/README.md
[docs]: https://safe-ds-dsl.readthedocs.io/en/latest/
You can find the full documentation [here](https://dsl.safe-ds.com).

0 comments on commit b920c38

Please sign in to comment.