-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Michael-F-Bryan/release-please--branches--…
…main chore: release main
- Loading branch information
Showing
11 changed files
with
103 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"crates/wit-compiler": "0.0.0", | ||
"crates/wit-language-server": "0.0.0", | ||
"tree-sitter-wit": "0.0.0", | ||
"plugins/vscode": "0.0.0" | ||
"crates/wit-compiler": "0.1.0", | ||
"crates/wit-language-server": "0.1.0", | ||
"tree-sitter-wit": "0.1.0", | ||
"plugins/vscode": "1.0.0" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Changelog | ||
|
||
## 0.1.0 (2024-03-25) | ||
|
||
|
||
### Features | ||
|
||
* Added queries for syntax highlighting ([91fef15](https://github.com/Michael-F-Bryan/wit-lsp/commit/91fef1530e437ed78112ba736fe80f5f83d7cad5)) | ||
* Created a `parse()` query and `Ast` wrapper around a Tree Sitter tree ([0257819](https://github.com/Michael-F-Bryan/wit-lsp/commit/025781938787c83b1bb8ae3ddc8b2f35bba85c20)) | ||
* Created an abstraction for a workspace ([0257819](https://github.com/Michael-F-Bryan/wit-lsp/commit/025781938787c83b1bb8ae3ddc8b2f35bba85c20)) | ||
* Generated strongly-typed AST nodes ([4a4005d](https://github.com/Michael-F-Bryan/wit-lsp/commit/4a4005d873aafd7649250a60d090ddc5e2212ffa)) | ||
* Implemented block comment parsing ([0794f11](https://github.com/Michael-F-Bryan/wit-lsp/commit/0794f11175734f39ac8dfe77177eceeb41ebe35d)) | ||
* Implemented selection range ([950b19c](https://github.com/Michael-F-Bryan/wit-lsp/commit/950b19c83ad56a8d6e678b4425d7a4a3bac96ead)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* We can now correctly parse all functions, resources, and types ([6e98229](https://github.com/Michael-F-Bryan/wit-lsp/commit/6e982299086c58d119f19e7cffd3b8fef4e78635)) | ||
|
||
|
||
### Dependencies | ||
|
||
* The following workspace dependencies were updated | ||
* dependencies | ||
* tree-sitter-wit bumped from 0.0.0 to 0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
# Changelog | ||
|
||
## 1.0.0 (2024-03-25) | ||
|
||
|
||
### Features | ||
|
||
* Automatically activate the extension when a workspace contains a `*.wit` file ([ac02883](https://github.com/Michael-F-Bryan/wit-lsp/commit/ac02883a0a736cf2701092ee26b4f9cb747e5c87)) | ||
* Copied the `language-configuration.json` across from `bytecodealliance/vscode-wit` ([4eae4a6](https://github.com/Michael-F-Bryan/wit-lsp/commit/4eae4a67795b1ed66392c582fb3821e8bf73382d)) | ||
* Copied the `wit.code-snippets` across from `bytecodealliance/vscode-wit` ([4eae4a6](https://github.com/Michael-F-Bryan/wit-lsp/commit/4eae4a67795b1ed66392c582fb3821e8bf73382d)) | ||
* Copied the `wit.tmLanguage.json` across from `bytecodealliance/vscode-wit` ([4eae4a6](https://github.com/Michael-F-Bryan/wit-lsp/commit/4eae4a67795b1ed66392c582fb3821e8bf73382d)) | ||
* Created a "WIT Language Server" plugin for VS Code ([c258d73](https://github.com/Michael-F-Bryan/wit-lsp/commit/c258d73d6fb69fa8db18a78db2859402bca55e6a)) | ||
* Created a "WIT: Dump AST" command for dumping a file's syntax tree ([82a0b5f](https://github.com/Michael-F-Bryan/wit-lsp/commit/82a0b5f058fba91a92917fbf44f197cc9a11328e)) | ||
* Created a "WIT: Restart Server" command for restarting the language server ([82a0b5f](https://github.com/Michael-F-Bryan/wit-lsp/commit/82a0b5f058fba91a92917fbf44f197cc9a11328e)) | ||
* Created a "WIT: Show Changelog" command for showing the language server's changelog ([82a0b5f](https://github.com/Michael-F-Bryan/wit-lsp/commit/82a0b5f058fba91a92917fbf44f197cc9a11328e)) | ||
* Created a "WIT: Show Version" command for showing the language server version ([82a0b5f](https://github.com/Michael-F-Bryan/wit-lsp/commit/82a0b5f058fba91a92917fbf44f197cc9a11328e)) | ||
* The developer tools are automatically opened when running the extension in dev or test mode ([749de5f](https://github.com/Michael-F-Bryan/wit-lsp/commit/749de5fbf2d2acf671b5ea1370ecd6d01da85113)) | ||
|
||
## Changelog | ||
|
||
All notable changes to the `wit-language-server` extension will be documented in this file. | ||
|
||
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Changelog | ||
|
||
## 0.1.0 (2024-03-25) | ||
|
||
|
||
### Features | ||
|
||
* Added queries for syntax highlighting ([91fef15](https://github.com/Michael-F-Bryan/wit-lsp/commit/91fef1530e437ed78112ba736fe80f5f83d7cad5)) | ||
* Generated strongly-typed AST nodes ([4a4005d](https://github.com/Michael-F-Bryan/wit-lsp/commit/4a4005d873aafd7649250a60d090ddc5e2212ffa)) | ||
* Implemented block comment parsing ([0794f11](https://github.com/Michael-F-Bryan/wit-lsp/commit/0794f11175734f39ac8dfe77177eceeb41ebe35d)) | ||
* Implemented the full WIT grammar ([6f5a511](https://github.com/Michael-F-Bryan/wit-lsp/commit/6f5a5111d4a2f59feec0b13d39dc28aa4739ba54)) | ||
* Parse package declarations ([cd36dd8](https://github.com/Michael-F-Bryan/wit-lsp/commit/cd36dd88ab7d8d0f3416e1874636c3c260866f90)) | ||
* Parse top-level "use" statements ([1f6a33a](https://github.com/Michael-F-Bryan/wit-lsp/commit/1f6a33a95dbf808c0309807ccfdacb7588965931)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* We can now correctly parse all functions, resources, and types ([6e98229](https://github.com/Michael-F-Bryan/wit-lsp/commit/6e982299086c58d119f19e7cffd3b8fef4e78635)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters