From b8116dd3dda35aabfffb4da073c0e206b121a3a2 Mon Sep 17 00:00:00 2001 From: Joshua Holmer Date: Mon, 2 May 2016 09:40:37 -0400 Subject: [PATCH] Version 0.6.0 [ci skip] --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 565e4d73..ed70dff3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -**Version 0.6.0 (unreleased)** +**Version 0.6.0** - Fix issue where output directory would not be created if it did not exist - Use miniz for compression strategies where it outperforms zlib - [SEMVER_MINOR] Partially implement -p / --preserve, as far as stable Rust will allow for now diff --git a/Cargo.toml b/Cargo.toml index 5791540b..3c5ae8d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxipng" -version = "0.5.0" +version = "0.6.0" authors = ["Joshua Holmer "] description = "A lossless PNG compression optimizer" license = "MIT" diff --git a/src/main.rs b/src/main.rs index 23d6a83d..322f1277 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,7 +10,7 @@ use std::fs::DirBuilder; use std::io::{Write, stderr}; use std::path::PathBuf; -const VERSION_STRING: &'static str = "0.5.0"; +const VERSION_STRING: &'static str = "0.6.0"; fn main() { let mut filter = HashSet::new();