Skip to content

Commit

Permalink
svelte: Bump to v0.1.1 (#1367)
Browse files Browse the repository at this point in the history
This PR updates the Svelte extension to v0.1.1.

See zed-industries/zed#17414 for the changes in
this version.
  • Loading branch information
maxdeviant committed Sep 5, 2024
1 parent d20b49c commit 1bc7666
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extensions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ version = "0.0.1"
[svelte]
submodule = "extensions/zed"
path = "extensions/svelte"
version = "0.1.0"
version = "0.1.1"

[swift]
submodule = "extensions/swift"
Expand Down
2 changes: 1 addition & 1 deletion extensions/zed
Submodule zed updated 44 files
+5 −5 .github/workflows/ci.yml
+1 −1 .github/workflows/update_all_top_ranking_issues.yml
+1 −1 .github/workflows/update_weekly_top_ranking_issues.yml
+3 −3 Cargo.lock
+1 −1 Cargo.toml
+4 −0 assets/icons/pin_alt.svg
+2 −1 assets/keymaps/default-linux.json
+2 −1 assets/keymaps/default-macos.json
+1 −0 assets/settings/default.json
+40 −3 crates/assistant/src/assistant_panel.rs
+65 −10 crates/assistant/src/context.rs
+5 −0 crates/assistant_tool/src/tool_registry.rs
+18 −0 crates/collab/src/tests/remote_editing_collaboration_tests.rs
+3 −3 crates/editor/src/editor.rs
+2 −0 crates/editor/src/editor_settings.rs
+1 −1 crates/language_model/src/language_model.rs
+3 −0 crates/language_model/src/provider/anthropic.rs
+12 −12 crates/language_model/src/request.rs
+3 −0 crates/languages/src/vtsls.rs
+28 −18 crates/project/src/environment.rs
+36 −10 crates/project/src/lsp_store.rs
+112 −152 crates/project/src/project.rs
+290 −3 crates/project/src/project_settings.rs
+7 −0 crates/project/src/search.rs
+7 −1 crates/proto/proto/zed.proto
+4 −2 crates/proto/src/proto.rs
+1 −0 crates/remote_server/Cargo.toml
+40 −5 crates/remote_server/src/headless_project.rs
+1 −0 crates/remote_server/src/main.rs
+84 −4 crates/remote_server/src/remote_editing_tests.rs
+31 −1 crates/search/src/buffer_search.rs
+171 −41 crates/search/src/project_search.rs
+3 −3 crates/settings/src/settings_store.rs
+2 −0 crates/ui/src/components/icon.rs
+10 −8 crates/vcs_menu/src/lib.rs
+14 −7 crates/vim/src/command.rs
+28 −21 crates/vim/src/normal/search.rs
+12 −3 crates/vim/test_data/test_command_replace.json
+4 −0 crates/worktree/src/worktree.rs
+3 −3 docs/src/languages/typescript.md
+19 −12 docs/src/vim.md
+1 −1 extensions/svelte/Cargo.toml
+2 −2 extensions/svelte/extension.toml
+8 −1 extensions/svelte/languages/svelte/highlights.scm

0 comments on commit 1bc7666

Please sign in to comment.