From 11308959facf2c815251bb3c25a7208b76d94723 Mon Sep 17 00:00:00 2001 From: Joshua Holmer Date: Wed, 20 Apr 2016 15:51:14 -0400 Subject: [PATCH] Version 0.5.0 [ci skip] --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1259356b..c85e817a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/Cargo.toml b/Cargo.toml index b0f9914e..69360a49 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxipng" -version = "0.4.0" +version = "0.5.0" authors = ["Joshua Holmer "] description = "A lossless PNG compression optimizer" license = "MIT" diff --git a/src/main.rs b/src/main.rs index 38348c3e..9eb0bf11 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.4.0"; +const VERSION_STRING: &'static str = "0.5.0"; fn main() { let mut filter = HashSet::new();