Version 0.6.0 [ci skip]

This commit is contained in:
Joshua Holmer 2016-05-02 09:40:37 -04:00
parent a4a5953786
commit b8116dd3dd
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -1,6 +1,6 @@
[package]
name = "oxipng"
version = "0.5.0"
version = "0.6.0"
authors = ["Joshua Holmer <jholmer.in@gmail.com>"]
description = "A lossless PNG compression optimizer"
license = "MIT"

View file

@ -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();