snippets: Release 0.0.5 (#13434)
Some checks are pending
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Create a Linux bundle (push) Blocked by required conditions
CI / Create arm64 Linux bundle (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run

Fix invalid platform name on Linux.
Related to:
https://github.com/zed-industries/zed/pull/13253#issuecomment-2185323702
Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2024-06-24 00:39:42 +02:00 committed by GitHub
parent 73de99bee0
commit 78bc3a9a36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View file

@ -13599,7 +13599,7 @@ dependencies = [
[[package]]
name = "zed_snippets"
version = "0.0.4"
version = "0.0.5"
dependencies = [
"serde_json",
"zed_extension_api 0.0.6",

View file

@ -1,6 +1,6 @@
[package]
name = "zed_snippets"
version = "0.0.4"
version = "0.0.5"
edition = "2021"
publish = false
license = "Apache-2.0"

View file

@ -1,7 +1,7 @@
id = "snippets"
name = "Snippets"
description = "Support for language-agnostic snippets, provided by simple-completion-language-server"
version = "0.0.4"
version = "0.0.5"
schema_version = 1
authors = []
repository = "https://github.com/zed-industries/zed"

View file

@ -45,7 +45,7 @@ impl SnippetExtension {
},
os = match platform {
zed::Os::Mac => "apple-darwin",
zed::Os::Linux => "unknown-linux-musl",
zed::Os::Linux => "unknown-linux-gnu",
zed::Os::Windows => "pc-windows-msvc",
},
);