diff --git a/CHANGELOG.md b/CHANGELOG.md index c1c88ef2..769d739e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 90259126..34a4dd61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxipng" -version = "0.1.1" +version = "0.2.0" authors = ["Joshua Holmer "] description = "A lossless PNG compression optimizer" license = "MIT" diff --git a/src/main.rs b/src/main.rs index d93b9e9d..e5a4e16a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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();