Skip to content

Commit

Permalink
Merge branch 'omentic/main' into mark-deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
predragnikolic committed May 29, 2024
2 parents b841251 + 46c0d40 commit 9136738
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
os:
- ubuntu-latest
# - macOS-latest
- macOS-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0
2.1.0
18 changes: 18 additions & 0 deletions docs/src/language_servers.md
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,24 @@ Follow installation instructions on [LSP-ruff](https://github.com/sublimelsp/LSP

Follow installation instructions on [R-IDE](https://github.com/REditorSupport/sublime-ide-r#installation).

## Racket

1. Install the [Racket](https://packagecontrol.io/packages/Racket) package from Package Control for syntax highlighting.
2. Follow the instructions for installation at [racket-langserver](https://github.com/jeapostrophe/racket-langserver).
3. Open `Preferences > Package Settings > LSP > Settings` and add the `"racket-langserver"` client configuration to the `"clients"`:

```jsonc
{
"clients": {
"racket-langserver": {
"enabled": true,
"command": ["racket", "-l", "racket-langserver"],
"selector": "source.racket"
}
}
}
```

## Ruby / Ruby on Rails

There are multiple options:
Expand Down
1 change: 1 addition & 0 deletions messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@
"1.8.0": "messages/1.8.0.txt",
"1.9.0": "messages/1.9.0.txt",
"2.0.0": "messages/2.0.0.txt",
"2.1.0": "messages/2.1.0.txt",
"install": "messages/install.txt"
}
11 changes: 11 additions & 0 deletions messages/2.1.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
=> 2.1.0

# Features

- Add `refactoring_auto_save` setting to save modified files after applying a refactoring (#2433) (Janos Wortmann)

# Fixes and Improvements

- Respect semantic token capability when dynamically registered (#2453) (Rafał Chłodnicki)
- Use caret for point to look up symbol (#2440) (Troels Bjørnskov)
- Various typing improvements (#2446, #2450, #2456, #2458, #2460, #2459) (Janos Wortmann, Jack Cherng, deathaxe)
2 changes: 1 addition & 1 deletion plugin/core/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = (2, 0, 0)
__version__ = (2, 1, 0)

0 comments on commit 9136738

Please sign in to comment.