Skip to content

Commit

Permalink
Cut 1.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl committed Feb 4, 2023
1 parent 1984fa5 commit 919fdc4
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ 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`
* Get a log of commits since the previously released tag with `git log --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.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.21.0
1.22.0
1 change: 1 addition & 0 deletions messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"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.22.0": "messages/1.22.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
28 changes: 28 additions & 0 deletions messages/1.22.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
=> 1.22.0

# Breaking changes

- don't show diagnostics panel on save by default (#2179) (Glauco Custódio)

# Features

- Implement type hierarchy request (#2180) (jwortmann)
- Implement call hierarchy request (#2151) (jwortmann)

# Fixes and Improvements

- Perform inlay hint action on double instead of single click (#2175) (Предраг Николић)
- support canceling pending completions request (#2177) (Rafał Chłodnicki)
- fix stale state or lack of updates on changing branches (#2182) (Rafał Chłodnicki)
- Add timestamp and request duration in LSP logs (#2181) (Rafał Chłodnicki)
- workaround for View Listeners not being attached for new transient view (#2174) (Rafał Chłodnicki)
- Make Document Symbols behavior more consistent with built-in Goto Symbol (#2166) (jwortmann)
- Allow missing window/workDoneProgress/create request from the server (#2159) (Raoul Wols)
- Use "plaintext" language ID for plain text files (#2164) (Предраг Николић)
- Don't use "escapeall" extension when formatting with mdpopups (#2163) (Rafał Chłodnicki)
- support "force_group" and "group" arguments in "lsp_symbol_references" (#2186) (Rafał Chłodnicki)

# Plugin API changes

- trigger "on_server_response_async" also for "initialize" response (#2172) (Rafał Chłodnicki)
- allow setting additional text in permanent server status (#2173) (Rafał Chłodnicki)
2 changes: 1 addition & 1 deletion plugin/core/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = (1, 21, 0)
__version__ = (1, 22, 0)

0 comments on commit 919fdc4

Please sign in to comment.