From 32f854cd6fa5b8138d6c041d21aefb22399f9275 Mon Sep 17 00:00:00 2001 From: Nathan Fiedler Date: Tue, 10 Aug 2021 06:35:56 -0700 Subject: [PATCH] Prepare for the 0.15.0 release --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 3 +-- README.md | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 560e3cd..ae4103a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 2b29c1e..3372542 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "magick_rust" -version = "0.14.0" +version = "0.15.0" authors = ["Nathan Fiedler "] 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 = [] diff --git a/README.md b/README.md index 87af3ab..402c03a 100644 --- a/README.md +++ b/README.md @@ -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`