Skip to content

Commit

Permalink
Release version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
s3rvac committed Nov 14, 2023
1 parent 8a1b791 commit 00b0fec
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## dev

* -

## 0.6.0 (2023-11-14)

* The `compare()` function now returns `Result<u8>` instead of `Result<i8>` as
the return value is always between 0 and 100.

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssdeep"
version = "0.5.0"
version = "0.6.0"
authors = ["Petr Zemek <[email protected]>"]
description = "A Rust wrapper for ssdeep"
homepage = "https://github.com/s3rvac/ssdeep-rs"
Expand All @@ -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" }
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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/)
Expand Down
2 changes: 1 addition & 1 deletion libfuzzy-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libfuzzy-sys"
version = "0.5.0"
version = "0.6.0"
authors = ["Petr Zemek <[email protected]>"]
description = "Native bindings to the libfuzzy library"
homepage = "https://github.com/s3rvac/ssdeep-rs"
Expand Down

0 comments on commit 00b0fec

Please sign in to comment.