Version 0.6.0 [ci skip]
This commit is contained in:
parent
a4a5953786
commit
b8116dd3dd
3 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue