Skip to content

Commit

Permalink
📝 Update CHANGELOG for 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kenkangxgwe committed Jan 26, 2021
1 parent b1594d8 commit cf4edc1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.0] - 2021-01-26 🧨🐂

### Added

- Support for debugger adapter. Code can be evaluated and symbols can be
shown in the editor.

- CodeAction to show Documentation for system symbols (Thanks @wuyudi for
the help with testing)

## [0.2.2] - 2020-08-01 🐱‍🏍

### Added
Expand Down Expand Up @@ -94,7 +104,7 @@ error will not popup in Output window in VSCode (reported by

- SVG image for document information

## [0.1.1] - 2019-02-05 🧧
## [0.1.1] - 2019-02-05 🧧🐖

### Added

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ Block[{$ScriptCommandLine = Prepend[args, initfile], Quit = Function[{}, Throw[N
];
```
This is a good way to see the results from the unit tests.
To use the debugger adapter (current in a very early stage), you need to include
`debuggerPort` in the `initializationOptions`. And attach the frontend to that
port. For VS Code, it is automatically done by the extension.
## Language Server Features
Expand Down
2 changes: 1 addition & 1 deletion src/WolframLanguageServer/Server.wl
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ scheduleDelayedRequest[method_String, msg_, state_WorkState] := (
ServerConfig["requestDelays"][method],
"Second"
}],
"id" -> msg["id"],
"id" -> (msg["id"] // Replace[Except[_Integer] -> Missing["NoIdNeeded"]]),
"params" -> getScheduleTaskParameter[method, msg, state],
"callback" -> (handleRequest[method, msg, #1]&)
|>]]
Expand Down

0 comments on commit cf4edc1

Please sign in to comment.