Skip to content

Commit

Permalink
Version 0.2.0 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Holmer committed Mar 6, 2016
1 parent 067f344 commit 911f51f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.2.0** (unreleased)
**Version 0.2.0**
- Fix program version that is displayed when running `oxipng -V`
- Ensure `--quiet` mode is actually quiet (@SethDusek [#20](https://github.com/shssoichiro/oxipng/pull/20))
- Write status/debug information to stderr instead of stdout
Expand Down
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.1.1"
version = "0.2.0"
authors = ["Joshua Holmer <jholmer.in@gmail.com>"]
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 @@ -9,7 +9,7 @@ use std::collections::HashSet;
use std::io::{Write, stderr};
use std::path::PathBuf;

const VERSION_STRING: &'static str = "0.1.1";
const VERSION_STRING: &'static str = "0.2.0";

fn main() {
let mut filter = HashSet::new();
Expand Down

0 comments on commit 911f51f

Please sign in to comment.