From 1dcd0f693309aaa8e0f7a64a4d79d9272acce1e7 Mon Sep 17 00:00:00 2001 From: Nathan Fiedler Date: Sun, 17 Jul 2016 18:09:09 -0700 Subject: [PATCH] Fix crate version number cargo test passes --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5079981..8be2b99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [0.5.2] - 2016-07-17 +### Changed +- Streamline error handling in `build.rs` script. +- Fix the crate version number (previously stuck at 0.4.0). + ## [0.5.1] - 2016-06-25 ### Changed - hjr3: Changed read_image_blob() to borrow data rather than take ownership. diff --git a/Cargo.toml b/Cargo.toml index 6aa64d3..fec9725 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "magick_rust" -version = "0.5.1" +version = "0.5.2" authors = ["Nathan Fiedler "] description = "Selection of Rust bindings for the ImageMagick library." homepage = "https://github.com/nlfiedler/magick-rust"