Version 0.5.0 [ci skip]

This commit is contained in:
Joshua Holmer 2016-04-20 15:51:14 -04:00
parent b67083da0c
commit 11308959fa
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
**Version 0.5.0 (unreleased)**
**Version 0.5.0**
- [SEMVER_MINOR] Palette entries can now reduced, on by default ([#11](https://github.com/shssoichiro/oxipng/issues/11))
- Don't report that we are in pretend mode if verbosity is set to none
- Add cargo bench suite ([#7](https://github.com/shssoichiro/oxipng/issues/7))

View file

@ -1,6 +1,6 @@
[package]
name = "oxipng"
version = "0.4.0"
version = "0.5.0"
authors = ["Joshua Holmer <jholmer.in@gmail.com>"]
description = "A lossless PNG compression optimizer"
license = "MIT"

View file

@ -9,7 +9,7 @@ use std::collections::HashSet;
use std::io::{Write, stderr};
use std::path::PathBuf;
const VERSION_STRING: &'static str = "0.4.0";
const VERSION_STRING: &'static str = "0.5.0";
fn main() {
let mut filter = HashSet::new();