chore: release 0.6.2
Prebuild / Build Neovim aarch64-apple-darwin (push) Has been cancelled
Prebuild / Build Neovim aarch64-linux-android (push) Has been cancelled
Prebuild / Build Neovim aarch64-pc-windows-msvc (push) Has been cancelled
Prebuild / Build Neovim aarch64-unknown-linux-gnu (push) Has been cancelled
Prebuild / Build Neovim aarch64-unknown-linux-musl (push) Has been cancelled
Prebuild / Build Neovim x86_64-apple-darwin (push) Has been cancelled
Prebuild / Build Neovim x86_64-pc-windows-msvc (push) Has been cancelled
Prebuild / Build Neovim x86_64-unknown-linux-gnu (push) Has been cancelled
Prebuild / Build Neovim x86_64-unknown-linux-musl (push) Has been cancelled
Prebuild / Build C FFI aarch64-apple-darwin (push) Has been cancelled
Prebuild / Build C FFI aarch64-linux-android (push) Has been cancelled
Prebuild / Build C FFI aarch64-pc-windows-msvc (push) Has been cancelled
Prebuild / Build C FFI aarch64-unknown-linux-gnu (push) Has been cancelled
Prebuild / Build C FFI aarch64-unknown-linux-musl (push) Has been cancelled
Prebuild / Build C FFI x86_64-apple-darwin (push) Has been cancelled
Prebuild / Build C FFI x86_64-pc-windows-msvc (push) Has been cancelled
Prebuild / Build C FFI x86_64-unknown-linux-gnu (push) Has been cancelled
Prebuild / Build C FFI x86_64-unknown-linux-musl (push) Has been cancelled
Prebuild / Build MCP aarch64-apple-darwin (push) Has been cancelled
Prebuild / Build MCP aarch64-pc-windows-msvc (push) Has been cancelled
Prebuild / Build MCP aarch64-unknown-linux-gnu (push) Has been cancelled
Prebuild / Build MCP aarch64-unknown-linux-musl (push) Has been cancelled
Prebuild / Build MCP x86_64-apple-darwin (push) Has been cancelled
Prebuild / Build MCP x86_64-pc-windows-msvc (push) Has been cancelled
Prebuild / Build MCP x86_64-unknown-linux-gnu (push) Has been cancelled
Prebuild / Build MCP x86_64-unknown-linux-musl (push) Has been cancelled
Prebuild / Publish Rust crates (push) Has been cancelled
Prebuild / Publish npm packages (push) Has been cancelled
Prebuild / Release (push) Has been cancelled

This commit is contained in:
Dmitriy Kovalenko
2026-04-22 10:35:22 -07:00
parent 71c33e63b2
commit 1b79eecb58
8 changed files with 20 additions and 20 deletions
Generated
+6 -6
View File
@@ -629,7 +629,7 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
[[package]]
name = "fff-c"
version = "0.6.1"
version = "0.6.2"
dependencies = [
"fff-query-parser",
"fff-search",
@@ -642,7 +642,7 @@ dependencies = [
[[package]]
name = "fff-grep"
version = "0.6.1"
version = "0.6.2"
dependencies = [
"bstr",
"memchr",
@@ -650,7 +650,7 @@ dependencies = [
[[package]]
name = "fff-mcp"
version = "0.6.1"
version = "0.6.2"
dependencies = [
"clap",
"fff-query-parser",
@@ -680,7 +680,7 @@ dependencies = [
[[package]]
name = "fff-nvim"
version = "0.6.1"
version = "0.6.2"
dependencies = [
"ahash",
"blake3",
@@ -713,7 +713,7 @@ dependencies = [
[[package]]
name = "fff-query-parser"
version = "0.6.1"
version = "0.6.2"
dependencies = [
"criterion",
"zlob",
@@ -721,7 +721,7 @@ dependencies = [
[[package]]
name = "fff-search"
version = "0.6.1"
version = "0.6.2"
dependencies = [
"ahash",
"aho-corasick",
+2 -2
View File
@@ -11,8 +11,8 @@ exclude = ["crates/fff-notify-debouncer-full"]
resolver = "2"
[workspace.dependencies]
fff-grep = { version = "0.6.1", path = "crates/fff-grep" }
fff-query-parser = { version = "0.6.1", path = "crates/fff-query-parser", default-features = false }
fff-grep = { version = "0.6.2", path = "crates/fff-grep" }
fff-query-parser = { version = "0.6.2", path = "crates/fff-query-parser", default-features = false }
# Shared dependencies
ahash = "0.8"
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "fff-c"
version = "0.6.1"
version = "0.6.2"
edition = "2024"
description = "Raw C api of FFF file finder"
license = "MIT"
@@ -17,7 +17,7 @@ mimalloc.workspace = true
tracing.workspace = true
git2.workspace = true
fff = { package = "fff-search", path = "../fff-core" , version = "0.6.1" }
fff-query-parser = { path = "../fff-query-parser" , version = "0.6.1" }
fff = { package = "fff-search", path = "../fff-core" , version = "0.6.2" }
fff-query-parser = { path = "../fff-query-parser" , version = "0.6.2" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "fff-search"
version = "0.6.1"
version = "0.6.2"
edition = "2024"
license = "MIT"
authors = ["Dmitriy Kovalenko <dmtr.kovalenko@outlook.com>"]
+1 -1
View File
@@ -3,7 +3,7 @@ name = "fff-grep"
description = "File grepping logic for fff"
license = "MIT"
authors = ["Dmitriy Kovalenko <dmtr.kovalenko@outlok.com>"]
version = "0.6.1"
version = "0.6.2"
edition = "2024"
[dependencies]
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "fff-mcp"
version = "0.6.1"
version = "0.6.2"
edition = "2024"
description = "MCP server for FFF file finder - drop-in replacement for AI code assistant search tools"
license = "MIT"
@@ -14,8 +14,8 @@ default = ["zlob"]
zlob = ["fff/zlob"]
[dependencies]
fff = { package = "fff-search", path = "../fff-core", default-features = false , version = "0.6.1" }
fff-query-parser = { path = "../fff-query-parser", default-features = false , version = "0.6.1" }
fff = { package = "fff-search", path = "../fff-core", default-features = false , version = "0.6.2" }
fff-query-parser = { path = "../fff-query-parser", default-features = false , version = "0.6.2" }
mimalloc = { workspace = true }
rmcp = { version = "1.1.0", features = ["server", "transport-io"] }
schemars = "1.0"
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "fff-nvim"
version = "0.6.1"
version = "0.6.2"
edition = "2024"
[lib]
@@ -60,10 +60,10 @@ thiserror = { workspace = true }
tracing = { workspace = true }
# Local crates
fff = { package = "fff-search", path = "../fff-core", version = "0.6.1", features = [
fff = { package = "fff-search", path = "../fff-core", version = "0.6.2", features = [
"mimalloc-collect",
] }
fff-query-parser = { path = "../fff-query-parser", version = "0.6.1" }
fff-query-parser = { path = "../fff-query-parser", version = "0.6.2" }
# External dependencies
blake3 = "1.8.2"
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "fff-query-parser"
version = "0.6.1"
version = "0.6.2"
edition = "2024"
description = "Query parser for fff file finder - includes specific syntax for various constraints like globs, extensions, regex etc"
license = "MIT"