Skip to content

Commit 260e963

Browse files
authored
Merge pull request #78 from radarhere/readme
2 parents 7f8139b + 6a60240 commit 260e963

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add to `Cargo.toml`:
2222

2323
```toml
2424
[dependencies]
25-
imagequant = "4.0.0-beta.8"
25+
imagequant = "4.0.0"
2626
```
2727

2828
[See docs.rs for the library API documentation](https://docs.rs/imagequant).
@@ -86,7 +86,7 @@ pngquant v2 can use this library as a dynamic library. However, pngquant v4 does
8686

8787
### Upgrading for Rust users
8888

89-
If you've used the [`imagequant-sys`](//lib.rs/imagequant-sys) crate, switch to the higher-level [`imagequant`](//lib.rs/imagequant) crate. The `imagequant` v4 is almost entirely backwards-compatible, with small changes that the Rust compiler will point out (e.g. changed use of `c_int` to `u32`). See [docs](https://docs.rs/imagequant/4.0.0-beta.7/imagequant/index.html). Please fix deprecation warnings, because the deprecated functions will be removed.
89+
If you've used the [`imagequant-sys`](//lib.rs/imagequant-sys) crate, switch to the higher-level [`imagequant`](//lib.rs/imagequant) crate. The `imagequant` v4 is almost entirely backwards-compatible, with small changes that the Rust compiler will point out (e.g. changed use of `c_int` to `u32`). See [docs](https://docs.rs/imagequant/4.0.0/imagequant/index.html). Please fix deprecation warnings, because the deprecated functions will be removed.
9090

9191
The `openmp` Cargo feature has been renamed to `threads`.
9292

@@ -102,7 +102,7 @@ To disable threads when using this library as a dependency, disable default feat
102102

103103
```toml
104104
[dependencies]
105-
imagequant = { version = "4.0.0-beta.7", default-features = false }
105+
imagequant = { version = "4.0.0", default-features = false }
106106
```
107107

108108
When you compile the library directly, add `--no-default-features` flag.

imagequant-sys/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Add to `Cargo.toml`:
1818

1919
```toml
2020
[dependencies]
21-
imagequant = "4.0.0-beta.5"
21+
imagequant = "4.0.0"
2222
```
2323

2424
[See docs.rs for the library API documentation](https://docs.rs/imagequant).

0 commit comments

Comments
 (0)