From 99da13bd8e5f89f8cc6db3825112253263c85105 Mon Sep 17 00:00:00 2001 From: Josh Holmer Date: Tue, 26 Jul 2016 12:59:02 -0400 Subject: [PATCH] Version 0.10.0 [ci skip] --- 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 d7eddb2a..f8a8321c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -**Version 0.10.0 (unreleased)** +**Version 0.10.0** - [SEMVER_MINOR] Make clap and regex dependencies optional - Enabled by default, needed for executable build; can be disabled for use in crates - Remove reduction from palette to grayscale, which was not working and provided minimal benefit diff --git a/Cargo.lock b/Cargo.lock index 6569c9c2..f069043e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,10 +1,10 @@ [root] name = "oxipng" -version = "0.9.0" +version = "0.10.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)", - "clap 2.9.2 (registry+https://github.com/rust-lang/crates.io-index)", + "clap 2.9.3 (registry+https://github.com/rust-lang/crates.io-index)", "clippy 0.0.79 (registry+https://github.com/rust-lang/crates.io-index)", "crc 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "image 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -57,7 +57,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "clap" -version = "2.9.2" +version = "2.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "ansi_term 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index cea780a3..5e94778e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxipng" -version = "0.9.0" +version = "0.10.0" authors = ["Joshua Holmer "] description = "A lossless PNG compression optimizer" license = "MIT" diff --git a/src/main.rs b/src/main.rs index e035454e..179c1a54 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.9.0"; +const VERSION_STRING: &'static str = "0.10.0"; fn main() { let matches = App::new("oxipng")