Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
- Updated CHANGLOGs
- Updated outdated code examples in READMEs
  • Loading branch information
kaisalmen committed Jun 4, 2024
1 parent 1a1595c commit 092a396
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/versions-and-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The following table describes which version of **monaco-languageclient** and **@

| monaco-languageclient | monaco-editor-wrapper | monaco-editor-react | monaco-vscode-api / editor-api | vscode | monaco-editor | release date | comment |
| :---- | :---- | :--- | :--- | :--- | :--- | :--- | :--- |
| 8.5.0 | 5.2.0 | 4.2.0 | 5.2.0 | 1.89.1 | 0.48.0 | 2024-05-2x | |
| 8.5.0 | 5.2.0 | 4.2.0 | 5.2.0 | 1.89.1 | 0.48.0 | 2024-06-04 | |
| 8.4.0 | 5.1.2 | 4.1.2 | 5.1.1 | 1.89.1 | 0.48.0 | 2024-05-17 | |
| 8.4.0 | 5.1.1 | 4.1.1 | 5.1.1 | 1.89.1 | 0.48.0 | 2024-05-15 | |
| 8.4.0 | 5.1.0 | 4.1.0 | 5.1.1 | 1.89.1 | 0.48.0 | 2024-05-15 | |
Expand Down
5 changes: 3 additions & 2 deletions packages/examples/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

All notable changes to this npm module are documented in this file.

## [2024.6.x] - 2024-06-0x
## [2024.6.4] - 2024-06-04

- Updated to `monaco-languageclient@8.5.0`, `monaco-editor-wrapper@5.2.0` and `@typefox/monaco-editor-react@4.2.0`. Updated all `@codingame/monaco-vscode` packages to `5.2.0`.
- Updated to `monaco-languageclient@8.5.0`, `vscode-ws-jsonrpc@3.3.2`, `monaco-editor-wrapper@5.2.0` and `@typefox/monaco-editor-react@4.2.0`. Updated all `@codingame/monaco-vscode` packages to `5.2.0`.
- Fix: Multiple Monaco editor issue [#666](https://github.com/TypeFox/monaco-languageclient/pull/666)

## [2024.5.17] - 2024-05-17

Expand Down
5 changes: 5 additions & 0 deletions packages/vscode-ws-jsonrpc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this npm module are documented in this file.

## [3.3.2] - 2024-06-04

- Updated to `vscode-jsonrpc@8.2.1`
- Minor code adjustments to eslint rule expansions

## [3.3.1] - 2024-04-10

- Correction of README and unification of copyright statements.
Expand Down
5 changes: 4 additions & 1 deletion packages/wrapper-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

All notable changes to npm module [@typefox/monaco-editor-react](https://www.npmjs.com/package/@typefox/monaco-editor-react) are documented in this file.

## [4.2.0] - 2024-05-2x
## [4.2.0] - 2024-06-04

- Updated to `monaco-editor-wrapper@5.2.0`, `monaco-languageclient@8.5.0` and version `5.2.0` of `@codingame/monaco-vscode` packages
- Wrapper: Make codeResources and useDiffEditor optional in EditorAppConfig [#670](https://github.com/TypeFox/monaco-languageclient/pull/670)
- Additional code adjustments to eslint rule expansion
- chore: localeLoader: allow manually select which locale to load [#669](https://github.com/TypeFox/monaco-languageclient/pull/669)

## [4.1.2] - 2024-05-17

Expand Down
8 changes: 6 additions & 2 deletions packages/wrapper-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@ const userConfig: UserConfig = {
wrapperConfig: {
editorAppConfig: {
$type: 'extendend',
languageId: 'python',
code: 'print("Hello, World!")'
codeResources: {
main: {
text: 'print("Hello, World!")',
uri: '/workspace/hello.py'
}
}
}
}
};
Expand Down
7 changes: 5 additions & 2 deletions packages/wrapper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

All notable changes to npm module [monaco-editor-wrapper](https://www.npmjs.com/package/monaco-editor-wrapper) are documented in this file.

## [5.2.0] - 2024-05-2x
## [5.2.0] - 2024-06-04

- Updated to `monaco-languageclient@8.5.0` and version `5.2.0` of `@codingame/monaco-vscode` packages
- Updated to `monaco-languageclient@8.5.0`, `vscode-ws-jsonrpc@3.3.2` and version `5.2.0` of `@codingame/monaco-vscode` packages
- Wrapper: Make codeResources and useDiffEditor optional in EditorAppConfig [#670](https://github.com/TypeFox/monaco-languageclient/pull/670)
- Additional code adjustments to eslint rule expansion
- chore: localeLoader: allow manually select which locale to load [#669](https://github.com/TypeFox/monaco-languageclient/pull/669)

## [5.1.2] - 2024-05-17

Expand Down
8 changes: 6 additions & 2 deletions packages/wrapper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,12 @@ const run = async () => {
wrapperConfig: {
editorAppConfig: {
$type: 'extendend',
languageId: 'python',
code: 'print("Hello, World!")'
codeResources: {
main: {
text: 'print("Hello, World!")',
uri: '/workspace/hello.py'
}
}
}
}
};
Expand Down

0 comments on commit 092a396

Please sign in to comment.