Skip to content

Commit 29e6480

Browse files
committed
chore: release 0.5.2
1 parent db4cd28 commit 29e6480

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

crates/fff-c/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fff-c"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2024"
55
description = "Raw C api of FFF file finder"
66
license = "MIT"
@@ -18,6 +18,6 @@ tracing.workspace = true
1818
git2.workspace = true
1919

2020
fff = { package = "fff-search", path = "../fff-core" , version = "0.5.1" }
21-
fff-query-parser = { path = "../fff-query-parser" , version = "0.5.1" }
21+
fff-query-parser = { path = "../fff-query-parser" , version = "0.5.2" }
2222
serde = { version = "1.0", features = ["derive"] }
2323
serde_json = "1.0"

crates/fff-core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fff-search"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2024"
55
license = "MIT"
66
authors = ["Dmitriy Kovalenko <dmtr.kovalenko@outlook.com>"]
@@ -27,7 +27,7 @@ rayon = { workspace = true }
2727
smallvec = { workspace = true }
2828
thiserror = { workspace = true }
2929
tracing = { workspace = true }
30-
fff-query-parser = { workspace = true }
30+
fff-query-parser = { workspace = true , version = "0.5.2" }
3131

3232
# External dependencies
3333
bindet = { workspace = true }
@@ -37,7 +37,7 @@ dirs = { workspace = true }
3737
git2 = { workspace = true }
3838
glidesort = { workspace = true }
3939
globset = { workspace = true }
40-
fff-grep = { workspace = true }
40+
fff-grep = { workspace = true , version = "0.5.2" }
4141
aho-corasick = "1"
4242
memchr = "2"
4343
heed = { workspace = true }

crates/fff-grep/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "fff-grep"
33
description = "File grepping logic for fff"
44
license = "MIT"
55
authors = ["Dmitriy Kovalenko <dmtr.kovalenko@outlok.com>"]
6-
version = "0.5.1"
6+
version = "0.5.2"
77
edition = "2024"
88

99
[dependencies]

crates/fff-mcp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fff-mcp"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2024"
55
description = "MCP server for FFF file finder - drop-in replacement for AI code assistant search tools"
66
license = "MIT"
@@ -15,7 +15,7 @@ zlob = ["fff/zlob"]
1515

1616
[dependencies]
1717
fff = { package = "fff-search", path = "../fff-core", default-features = false , version = "0.5.1" }
18-
fff-query-parser = { path = "../fff-query-parser", default-features = false , version = "0.5.1" }
18+
fff-query-parser = { path = "../fff-query-parser", default-features = false , version = "0.5.2" }
1919
mimalloc = { workspace = true }
2020
rmcp = { version = "1.1.0", features = ["server", "transport-io"] }
2121
schemars = "1.0"

crates/fff-nvim/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fff-nvim"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2024"
55

66
[lib]
@@ -50,7 +50,7 @@ tracing = { workspace = true }
5050

5151
# Local crates
5252
fff = { package = "fff-search", path = "../fff-core" , version = "0.5.1", features = ["mimalloc-collect"] }
53-
fff-query-parser = { path = "../fff-query-parser" , version = "0.5.1" }
53+
fff-query-parser = { path = "../fff-query-parser" , version = "0.5.2" }
5454

5555
# External dependencies
5656
blake3 = "1.8.2"

crates/fff-query-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fff-query-parser"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2024"
55
description = "Query parser for fff file finder - includes specific syntax for various constraints like globs, extensions, regex etc"
66
license = "MIT"

0 commit comments

Comments
 (0)