Skip to content

Commit

Permalink
Cut 1.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl committed Dec 30, 2022
1 parent 0565787 commit 9eea946
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,13 @@ Before you submit your pull request, please review the following:

I will try to help you get the PR in mergeable shape within a reasonable time, but it may take a few days.
It is best if you check your GitHub notifications in the meantime!

## Releasing a new version (for maintainers)

* Get a log of commits since the previously released tag with `git log --format="- format:%s (%an)" <previous_tag>..main`
* Filter out non-relevant and non-important commits (it's not relevant to report fixes for bugs that weren't released yet, for example)
* Optionally group changes into Fixes/Features/etc.
* Create a new file in `messages/` with a file name of the yet-to-be-released version and include the changes.
* Run `./scripts/release.py build` which will bump the version and create a new commit with a new messages file included.
* If something doesn't look right in the newly created commit, delete the newly created tag manually and git reset to the previous commit making sure that you don't lose the newly created messages file.
* Run `GITHUB_TOKEN=<your_token> ./scripts/release.py publish` to push and create a new Github release.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.20.0
1.21.0
1 change: 1 addition & 0 deletions messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"1.2.8": "messages/1.2.8.txt",
"1.2.9": "messages/1.2.9.txt",
"1.20.0": "messages/1.20.0.txt",
"1.21.0": "messages/1.21.0.txt",
"1.3.0": "messages/1.3.0.txt",
"1.3.1": "messages/1.3.1.txt",
"1.4.0": "messages/1.4.0.txt",
Expand Down
34 changes: 34 additions & 0 deletions messages/1.21.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
=> 1.21.0

# Features

- Add "Source Action" entry to the "Edit" main menu (#2149) (jwortmann)
- Add "Refactor" entry to the "Edit" main menu (#2141) (jwortmann)
- Auto-restart on server crashing, up to 5 times (#2145) (Lucas Alber)

# Fixes and Improvements

- Fix inlay hint parts wrapping into multiple lines (#2153) (Rafał Chłodnicki)
- Ensure commands triggered from minihtml run on correct view (#2154) (Rafał Chłodnicki)
- Fix completion documentation being parsed as markdown twice (#2146) (Rafał Chłodnicki)
- When going to definition, scroll to start of the region, not end (#2147) (Rafał Chłodnicki)
- Improve performance of completion & signature request on typing (#2148) (Rafał Chłodnicki)
- Fix code lenses not updating after Undo (#2139) (Rafał Chłodnicki)
- Add missing Goto commands to Command Palette (#2140) (Rafał Chłodnicki)
- docs: add missing keyboard shortcuts (#2143) (Rafał Chłodnicki)
- Pass force_group to LocationPicker (#2134) (Rafał Chłodnicki)
- Don't advertise support for disabled code actions (#2137) (Rafał Chłodnicki)
- Add context for lsp_open_link key binding (#2138) (jwortmann)
- Fix prepareRename support (#2127) (Rafał Chłodnicki)
- docs(language_servers): add markmark language server (for Markdown) (#2129) (Nico Rehwaldt)
- Fix plugin overwrite `on_workspace_configuration` (#2132) (Lucas Alber)
- Hide inactive items in context menu (#2124) (jwortmann)
- Don't show a source if diagnostic doesn't have a source (#2119) (Sainan)
- Combine file and range formatting entries in context menu (#2123) (jwortmann)
- Add language id for Django templates (Jannis Vajen)
- Nicer presentation for "find references/definition" quick panel (#2109) (Rafał Chłodnicki)
- Make Goto Diagnostic overlays consistent (#2115) (jwortmann)
- Don't trigger code action requests for background views (#2108) (Rafał Chłodnicki)
- Ignore diagnostics for files in folder_exclude_patterns (#2113) (jwortmann)
- Fix diagnostics underline color priority (#2106) (jwortmann)
- Fix diagnostics_additional_delay_auto_complete_ms not working after split view (#2107) (jwortmann)
2 changes: 1 addition & 1 deletion plugin/core/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = (1, 20, 0)
__version__ = (1, 21, 0)

0 comments on commit 9eea946

Please sign in to comment.