Version 0.2.0 [ci skip]
This commit is contained in:
parent
067f344823
commit
911f51faa9
3 changed files with 3 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
**Version 0.2.0** (unreleased)
|
**Version 0.2.0**
|
||||||
- Fix program version that is displayed when running `oxipng -V`
|
- 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))
|
- Ensure `--quiet` mode is actually quiet (@SethDusek [#20](https://github.com/shssoichiro/oxipng/pull/20))
|
||||||
- Write status/debug information to stderr instead of stdout
|
- Write status/debug information to stderr instead of stdout
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxipng"
|
name = "oxipng"
|
||||||
version = "0.1.1"
|
version = "0.2.0"
|
||||||
authors = ["Joshua Holmer <jholmer.in@gmail.com>"]
|
authors = ["Joshua Holmer <jholmer.in@gmail.com>"]
|
||||||
description = "A lossless PNG compression optimizer"
|
description = "A lossless PNG compression optimizer"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ use std::collections::HashSet;
|
||||||
use std::io::{Write, stderr};
|
use std::io::{Write, stderr};
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
const VERSION_STRING: &'static str = "0.1.1";
|
const VERSION_STRING: &'static str = "0.2.0";
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let mut filter = HashSet::new();
|
let mut filter = HashSet::new();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue