diff --git a/CHANGELOG.md b/CHANGELOG.md index 565e4d73a..ed70dff38 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 5791540b0..3c5ae8d0f 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 23d6a83d1..322f12772 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();