Prepare for the 0.15.0 release

This commit is contained in:
Nathan Fiedler
2021-08-10 06:35:56 -07:00
parent cfd9849604
commit 32f854cd6f
3 changed files with 16 additions and 3 deletions

View File

@ -5,6 +5,20 @@ This project adheres to [Semantic Versioning](http://semver.org/).
This file follows the convention described at
[Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
## [0.15.0] - 2021-8-10
### Added
- glebpom: Support resource limits
- lerouxrgd: Add kmeans
- danielronnkvist: modulate image
- asonix: Add quantum depth and sample method
- Drevoed: Add MagickLiquidRescaleImage and MagickImplodeImage
### Changed
- brownjohnf: Update imagemmagick checks to support 7.1
- liyunde: Fix path_separator on windows can not build
- kz6wk9: Required version bump on bindgen.
- asonix: Set environment variable with magickcore config flags
- captainbland: Add workaround for QuantumRange not defined error when hdri is disabled
## [0.14.0] - 2020-5-21
### Added
- npajkovsky: add `negate_image()` operation

View File

@ -1,6 +1,6 @@
[package]
name = "magick_rust"
version = "0.14.0"
version = "0.15.0"
authors = ["Nathan Fiedler <nathanfiedler@fastmail.fm>"]
description = "Selection of Rust bindings for the ImageMagick library."
homepage = "https://github.com/nlfiedler/magick-rust"
@ -18,6 +18,5 @@ bindgen = "0.59"
pkg-config = "0.3"
[features]
# Workaround for bindgen bug when ImageMagick is compiled with disable-hdri
disable-hdri = []

View File

@ -5,7 +5,7 @@ A somewhat safe Rust interface to the [ImageMagick](http://www.imagemagick.org/)
## Dependencies
* Rust stable
* ImageMagick (version 7.0.x)
* ImageMagick (version 7.0.x to 7.1.x)
- Does _not_ work with ImageMagick 6.x due to backward incompatible changes.
- [FreeBSD](https://www.freebsd.org): `sudo pkg install ImageMagick7`
- [Homebrew](http://brew.sh): `brew install imagemagick`