chore: prepare for 0.19 release

This commit is contained in:
Nathan Fiedler
2023-06-19 10:23:17 -07:00
parent dc34cecc68
commit ce0792f27b
2 changed files with 8 additions and 2 deletions

View File

@ -5,6 +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/).
## [0.19.0] - 2023-06-19
### Added
- walterbm: Add `coalesce()` for image coalesce.
- FaithBeam: Add `compose_images_gravity()` for image composition.
- Upgrade dependency `bindgen` to 0.66.1
## [0.18.0] - 2023-04-15 ## [0.18.0] - 2023-04-15
### Changed ### Changed
- **Breaking**: jshrake: Add `map` argument to `import_image_pixels()` and - **Breaking**: jshrake: Add `map` argument to `import_image_pixels()` and

View File

@ -1,6 +1,6 @@
[package] [package]
name = "magick_rust" name = "magick_rust"
version = "0.18.0" version = "0.19.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.65.1" bindgen = "0.66.1"
pkg-config = "0.3" pkg-config = "0.3"
[features] [features]