From 29557a18e8ad5be29dc80f41350594528b614a8c Mon Sep 17 00:00:00 2001 From: Josh Holmer Date: Thu, 14 Jul 2016 20:00:59 -0400 Subject: [PATCH] Version 0.9.0 --- CHANGELOG.md | 2 +- Cargo.lock | 6 +++--- Cargo.toml | 2 +- src/main.rs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e66db81..7a21538e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -**Version 0.9.0 (unreleased)** +**Version 0.9.0** - [SEMVER_MAJOR] Significant refactoring of modules - Use `itertools` to cleanup areas of code - Use multiple threads for filtering trials diff --git a/Cargo.lock b/Cargo.lock index 4f4ec5ab..6569c9c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "oxipng" -version = "0.8.2" +version = "0.9.0" dependencies = [ "bit-vec 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -10,7 +10,7 @@ dependencies = [ "image 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "itertools 0.4.16 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", - "libz-sys 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libz-sys 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "miniz-sys 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", "regex 0.1.73 (registry+https://github.com/rust-lang/crates.io-index)", @@ -174,7 +174,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "libz-sys" -version = "1.0.4" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gcc 0.3.30 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 9512f1f1..ba6c0d98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxipng" -version = "0.8.2" +version = "0.9.0" authors = ["Joshua Holmer "] description = "A lossless PNG compression optimizer" license = "MIT" diff --git a/src/main.rs b/src/main.rs index 2ee3d996..e035454e 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.8.2"; +const VERSION_STRING: &'static str = "0.9.0"; fn main() { let matches = App::new("oxipng")