Skip to content

Commit 25d93ca

Browse files
authored
chore: bump version to 0.1.4 (#69)
1 parent aa9a622 commit 25d93ca

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ edition = "2021"
33
license = "MIT"
44
name = "zed_biome"
55
publish = false
6-
version = "0.1.3"
6+
version = "0.1.4"
77

88
[lib]
99
crate-type = ["cdylib"]

extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ id = "biome"
44
name = "Biome"
55
repository = "https://github.com/biomejs/biome-zed"
66
schema_version = 1
7-
version = "0.1.3"
7+
version = "0.1.4"
88

99
[language_servers.biome]
1010
code_action_kinds = ["quickfix"]

src/biome.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ struct BiomeExtension;
1515

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

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

0 commit comments

Comments
 (0)