Version 0.10.0 [ci skip]

This commit is contained in:
Josh Holmer 2016-07-26 12:59:02 -04:00
parent 742b89f756
commit 99da13bd8e
4 changed files with 6 additions and 6 deletions

View file

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

6
Cargo.lock generated
View file

@ -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)",

View file

@ -1,6 +1,6 @@
[package]
name = "oxipng"
version = "0.9.0"
version = "0.10.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.9.0";
const VERSION_STRING: &'static str = "0.10.0";
fn main() {
let matches = App::new("oxipng")