Compare commits

...

13 Commits

Author SHA1 Message Date
Bennet Bo Fenner
7155d2c45f assistant: Set default provider to zed.dev (#16454)
Do NOT merge until tomorrow

Release Notes:

- N/A

---------

Co-authored-by: Thorsten <thorsten@zed.dev>
2024-08-19 19:00:55 -04:00
Joseph T Lyons
9fe662457c v0.149.x stable 2024-08-19 18:40:07 -04:00
Joseph T Lyons
8a08297c9d zed 0.149.3 2024-08-19 17:51:46 -04:00
Joseph T Lyons
147584d63c Merge branch 'main' into v0.149.x 2024-08-19 17:50:02 -04:00
Peter Tripp
f06b85994a zed 0.149.2 2024-08-19 11:51:48 -04:00
Peter Tripp
ec6909ca93 Merge tag 'nightly' into v0.149.x 2024-08-19 11:50:43 -04:00
Peter Tripp
54d92a9e2d zed 0.149.1 2024-08-16 14:01:47 -04:00
Peter Tripp
a89f768e12 Manually rewind preview version to previous preview. 2024-08-16 13:56:45 -04:00
Peter Tripp
7a68f142d4 Merge tag 'nightly' into v0.149.1_cherry 2024-08-16 13:53:22 -04:00
Kirill Bulatov
3f3ae477c5 Disable forceful sorting of the slash command argument completions (#16240)
Also bubble up the current active tab's path in the \tab argument
completions.

Release Notes:

- N/A
2024-08-14 12:45:35 -07:00
Mikayla Maki
660fe8aa94 Fix a bug where directories were not matching in the fuzzy matcher, when query contains the worktree root name (#16242)
Release Notes:

- Fixed a bug where directories were often omitted from the completions for the /file slash command

Co-authored-by: Max <max@zed.dev>
2024-08-14 12:45:02 -07:00
Bennet Bo Fenner
69fb9b9bfa assistant: Adjust terms of service notice (#16235)
Co-Authored-by: Max <max@zed.dev>
Co-Authored-by: Marshall <marshall@zed.dev>
Co-Authored-by: Peter <peter@zed.dev>

<img width="396" alt="image"
src="https://github.com/user-attachments/assets/62282506-c74a-455e-ae4d-0438d47fed96">

Release Notes:

- N/A

Co-authored-by: Max <max@zed.dev>
Co-authored-by: Marshall <marshall@zed.dev>
Co-authored-by: Peter <peter@zed.dev>
2024-08-14 13:21:55 -04:00
Joseph T Lyons
7f82db5740 v0.149.x preview 2024-08-14 12:45:44 -04:00
5 changed files with 7 additions and 7 deletions

2
Cargo.lock generated
View File

@@ -13839,7 +13839,7 @@ dependencies = [
[[package]]
name = "zed"
version = "0.150.0"
version = "0.149.3"
dependencies = [
"activity_indicator",
"anyhow",

View File

@@ -395,9 +395,9 @@
// The default model to use when creating new contexts.
"default_model": {
// The provider to use.
"provider": "openai",
"provider": "zed.dev",
// The model to use.
"model": "gpt-4o"
"model": "claude-3-5-sonnet"
}
},
// The settings for slash commands.

View File

@@ -543,8 +543,8 @@ mod tests {
assert_eq!(
AssistantSettings::get_global(cx).default_model,
LanguageModelSelection {
provider: "openai".into(),
model: "gpt-4o".into(),
provider: "zed.dev".into(),
model: "claude-3-5-sonnet".into(),
}
);
});

View File

@@ -2,7 +2,7 @@
description = "The fast, collaborative code editor."
edition = "2021"
name = "zed"
version = "0.150.0"
version = "0.149.3"
publish = false
license = "GPL-3.0-or-later"
authors = ["Zed Team <hi@zed.dev>"]

View File

@@ -1 +1 @@
dev
stable