From 548c69cad74c5da080eb6c577b5e0af63f115038 Mon Sep 17 00:00:00 2001 From: Joshua Holmer Date: Mon, 4 Apr 2016 20:23:24 -0400 Subject: [PATCH] Version 0.3.0 [ci skip] --- CHANGELOG.md | 6 +++--- Cargo.toml | 2 +- src/main.rs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31edf3d1a..6813a0983 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ -**Version 0.3.0 (unreleased)** - - Support interlaced images - - Allow converting between progressive and interlaced images +**Version 0.3.0** + - Properly decode interlaced images + - [SEMVER_MINOR] Allow converting between progressive and interlaced images ([#3](https://github.com/shssoichiro/oxipng/issues/3)) - Fix a bug that would cause oxipng to crash on very small images **Version 0.2.2** diff --git a/Cargo.toml b/Cargo.toml index c60e5c769..c70a3089a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxipng" -version = "0.2.2" +version = "0.3.0" authors = ["Joshua Holmer "] description = "A lossless PNG compression optimizer" license = "MIT" diff --git a/src/main.rs b/src/main.rs index 18dce7439..0455ae460 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.2.2"; +const VERSION_STRING: &'static str = "0.3.0"; fn main() { let mut filter = HashSet::new();