mirror of
https://github.com/FliegendeWurst/ripgrep-all.git
synced 2024-11-08 14:00:37 +00:00
bump version
This commit is contained in:
parent
98ea929978
commit
4abed49dfc
@ -1,12 +1,13 @@
|
||||
# 0.9.7 (unreleased)
|
||||
# 1.0.0 (unreleased)
|
||||
|
||||
- auto generate parts of the readme
|
||||
- add loads of debug logs and performance timings when `--debug` is used
|
||||
- better error messages via `anyhow`
|
||||
- add cross-platform rga-fzf binary
|
||||
- add a config file (~/.config/ripgrep-all) that is generated on first use, including schema
|
||||
- change adapter interface from `(&Read, &Write) -> ()` to `Read -> Read` to allow chaining of adapters
|
||||
- this means that all adapters are now run in their own thread, data passed via a pipe. might cause performance regressions
|
||||
- add a config file (~/.config/ripgrep-all/config.jsonc) that is generated on first use, including schema
|
||||
- change whole code base to be async
|
||||
- change adapter interface from `(&Read, &Write) -> ()` to `AsyncRead -> AsyncRead` to allow chaining of adapters
|
||||
- allow custom subprocess-spawning adapters defined via config file
|
||||
|
||||
# 0.9.6 (2020-05-19)
|
||||
|
||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -1356,7 +1356,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "ripgrep_all"
|
||||
version = "0.9.7-alpha.0"
|
||||
version = "1.0.0-alpha.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-compression",
|
||||
|
@ -11,7 +11,7 @@ license = "AGPL-3.0-or-later"
|
||||
name = "ripgrep_all"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/phiresky/ripgrep-all"
|
||||
version = "0.9.7-alpha.0"
|
||||
version = "1.0.0-alpha.2"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
@ -53,7 +53,7 @@ fn list_adapters(args: RgaConfig) -> Result<()> {
|
||||
for adapter in enabled_adapters {
|
||||
print(adapter)
|
||||
}
|
||||
println!("The following adapters are disabled by default, and can be enabled using '--rga-adapters=+pdfpages,tesseract':\n");
|
||||
println!("The following adapters are disabled by default, and can be enabled using '--rga-adapters=+foo,bar':\n");
|
||||
for adapter in disabled_adapters {
|
||||
print(adapter)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user