Skip to content

Commit

Permalink
chore: bump version to 0.1.4 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
luckydye authored Feb 11, 2025
1 parent aa9a622 commit 25d93ca
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ edition = "2021"
license = "MIT"
name = "zed_biome"
publish = false
version = "0.1.3"
version = "0.1.4"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion extension.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ id = "biome"
name = "Biome"
repository = "https://github.com/biomejs/biome-zed"
schema_version = 1
version = "0.1.3"
version = "0.1.4"

[language_servers.biome]
code_action_kinds = ["quickfix"]
Expand Down
2 changes: 1 addition & 1 deletion src/biome.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ struct BiomeExtension;

impl BiomeExtension {
fn extension_server_exists(&self, path: &PathBuf) -> bool {
std::fs::metadata(path).map_or(false, |stat| stat.is_file())
std::fs::metadata(path).is_ok_and(|stat| stat.is_file())
}

fn binary_specifier(&self) -> Result<String, String> {
Expand Down

0 comments on commit 25d93ca

Please sign in to comment.