Skip to content

Commit 00b0fec

Browse files
committed
Release version 0.6.0
1 parent 8a1b791 commit 00b0fec

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## dev
44

5+
* -
6+
7+
## 0.6.0 (2023-11-14)
8+
59
* The `compare()` function now returns `Result<u8>` instead of `Result<i8>` as
610
the return value is always between 0 and 100.
711

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ssdeep"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Petr Zemek <[email protected]>"]
55
description = "A Rust wrapper for ssdeep"
66
homepage = "https://github.com/s3rvac/ssdeep-rs"
@@ -11,4 +11,4 @@ license = "GPL-3.0+"
1111

1212
[dependencies]
1313
libc = "0.2"
14-
libfuzzy-sys = { path = "libfuzzy-sys", version = "0.5.0" }
14+
libfuzzy-sys = { path = "libfuzzy-sys", version = "0.6.0" }

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ post](https://blog.petrzemek.net/2016/11/01/computing-context-triggered-piecewis
1919
Add the following lines into your `Cargo.toml` file:
2020
```
2121
[dependencies]
22-
ssdeep = "0.5.0"
22+
ssdeep = "0.6.0"
2323
```
2424

2525
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.
6565
An automatically generated API documentation is available here:
6666

6767
* [latest](https://docs.rs/ssdeep/)
68+
* [0.6.0](https://docs.rs/ssdeep/0.6.0/ssdeep/)
6869
* [0.5.0](https://docs.rs/ssdeep/0.5.0/ssdeep/)
6970
* [0.4.0](https://docs.rs/ssdeep/0.4.0/ssdeep/)
7071
* [0.3.0](https://docs.rs/ssdeep/0.3.0/ssdeep/)

libfuzzy-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libfuzzy-sys"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Petr Zemek <[email protected]>"]
55
description = "Native bindings to the libfuzzy library"
66
homepage = "https://github.com/s3rvac/ssdeep-rs"

0 commit comments

Comments
 (0)