From 00b0fec1c04fd6aad38aeea3ce8e99fe61ee3bef Mon Sep 17 00:00:00 2001 From: Petr Zemek Date: Tue, 14 Nov 2023 16:09:01 +0100 Subject: [PATCH] Release version 0.6.0 --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- README.md | 3 ++- libfuzzy-sys/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 038b2d2..70a81e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## dev +* - + +## 0.6.0 (2023-11-14) + * The `compare()` function now returns `Result` instead of `Result` as the return value is always between 0 and 100. diff --git a/Cargo.toml b/Cargo.toml index 0eb9cee..3282b1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssdeep" -version = "0.5.0" +version = "0.6.0" authors = ["Petr Zemek "] description = "A Rust wrapper for ssdeep" homepage = "https://github.com/s3rvac/ssdeep-rs" @@ -11,4 +11,4 @@ license = "GPL-3.0+" [dependencies] libc = "0.2" -libfuzzy-sys = { path = "libfuzzy-sys", version = "0.5.0" } +libfuzzy-sys = { path = "libfuzzy-sys", version = "0.6.0" } diff --git a/README.md b/README.md index 74f1740..81cb5ba 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ post](https://blog.petrzemek.net/2016/11/01/computing-context-triggered-piecewis Add the following lines into your `Cargo.toml` file: ``` [dependencies] -ssdeep = "0.5.0" +ssdeep = "0.6.0" ``` Then, when you run `cargo build`, it will automatically get the wrapper's @@ -65,6 +65,7 @@ error is returned when the underlying C function fails. An automatically generated API documentation is available here: * [latest](https://docs.rs/ssdeep/) +* [0.6.0](https://docs.rs/ssdeep/0.6.0/ssdeep/) * [0.5.0](https://docs.rs/ssdeep/0.5.0/ssdeep/) * [0.4.0](https://docs.rs/ssdeep/0.4.0/ssdeep/) * [0.3.0](https://docs.rs/ssdeep/0.3.0/ssdeep/) diff --git a/libfuzzy-sys/Cargo.toml b/libfuzzy-sys/Cargo.toml index 73cd723..c0f24b4 100644 --- a/libfuzzy-sys/Cargo.toml +++ b/libfuzzy-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfuzzy-sys" -version = "0.5.0" +version = "0.6.0" authors = ["Petr Zemek "] description = "Native bindings to the libfuzzy library" homepage = "https://github.com/s3rvac/ssdeep-rs"