diff --git a/CHANGELOG.md b/CHANGELOG.md index 7915e23..3d64961 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## v0.8.0 (2024-05-14) + +### Feat + +- Add scripting capabilities with rhai +- switch to quickjs for scripting +- Add javascript eval command to interact with the output data in -i mode +- add a remove command for interactive mode + +### Fix + +- remove useless mut + +### Refactor + +- rename data to tree in eval +- Switch to format! instead of "+" concatenation +- Switch to std::time::Instant instead of stopwatch + ## v0.7.5 (2024-04-24) ### Fix diff --git a/Cargo.toml b/Cargo.toml index e4f4917..6edb6a3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rwalk" -version = "0.7.5" +version = "0.8.0" authors = ["cstef"] description = "A blazing fast web directory scanner" license = "MIT"