Skip to content

Commit

Permalink
Version 0.10.0 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Holmer committed Jul 26, 2016
1 parent 742b89f commit 99da13b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxipng"
version = "0.9.0"
version = "0.10.0"
authors = ["Joshua Holmer <[email protected]>"]
description = "A lossless PNG compression optimizer"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 99da13b

Please sign in to comment.