chore: update bindgen and prepare for release
This commit is contained in:
@ -5,10 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
This file follows the convention described at
|
This file follows the convention described at
|
||||||
[Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
|
[Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
## Unreleased
|
## [0.17.0] - 2022-12-10
|
||||||
### Added
|
### Added
|
||||||
- walterbm: Add support for image deskew.
|
- walterbm: Add support for image deskew.
|
||||||
|
- Upgrade dependency `bindgen` to 0.63
|
||||||
- DCjanus: Upgrade dependency `bindgen` (0.59 -> 0.60)
|
- DCjanus: Upgrade dependency `bindgen` (0.59 -> 0.60)
|
||||||
|
- MaksRawski: add `DrawRectangle` and `MagickBrightnessContrastImage` bindings
|
||||||
|
|
||||||
## [0.16.0] - 2022-04-09
|
## [0.16.0] - 2022-04-09
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "magick_rust"
|
name = "magick_rust"
|
||||||
version = "0.16.0"
|
version = "0.17.0"
|
||||||
authors = ["Nathan Fiedler <nathanfiedler@fastmail.fm>"]
|
authors = ["Nathan Fiedler <nathanfiedler@fastmail.fm>"]
|
||||||
description = "Selection of Rust bindings for the ImageMagick library."
|
description = "Selection of Rust bindings for the ImageMagick library."
|
||||||
homepage = "https://github.com/nlfiedler/magick-rust"
|
homepage = "https://github.com/nlfiedler/magick-rust"
|
||||||
@ -14,7 +14,7 @@ build = "build.rs"
|
|||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
bindgen = "0.60"
|
bindgen = "0.63"
|
||||||
pkg-config = "0.3"
|
pkg-config = "0.3"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|||||||
@ -64,7 +64,7 @@ error: aborting due to previous error
|
|||||||
See [issue 40](https://github.com/nlfiedler/magick-rust/issues/40) on GitHub for some background. The issue seems to be that with HDRI disabled, rust-bindgen will not produce the bindings needed for the "quantum range" feature of ImageMagick (see [issue 316](https://github.com/rust-lang/rust-bindgen/issues/316)). To work-around this issue, you can disable HDRI support in your `Cargo.toml` file, like so:
|
See [issue 40](https://github.com/nlfiedler/magick-rust/issues/40) on GitHub for some background. The issue seems to be that with HDRI disabled, rust-bindgen will not produce the bindings needed for the "quantum range" feature of ImageMagick (see [issue 316](https://github.com/rust-lang/rust-bindgen/issues/316)). To work-around this issue, you can disable HDRI support in your `Cargo.toml` file, like so:
|
||||||
|
|
||||||
```
|
```
|
||||||
magick_rust = { version = "0.16.0", features = ["disable-hdri"] }
|
magick_rust = { version = "0.17.0", features = ["disable-hdri"] }
|
||||||
```
|
```
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|||||||
Reference in New Issue
Block a user