Version 0.3.0 [ci skip]

This commit is contained in:
Joshua Holmer 2016-04-04 20:23:24 -04:00
parent 0b7f40afd1
commit 548c69cad7
3 changed files with 5 additions and 5 deletions

View file

@ -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**

View file

@ -1,6 +1,6 @@
[package]
name = "oxipng"
version = "0.2.2"
version = "0.3.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.2.2";
const VERSION_STRING: &'static str = "0.3.0";
fn main() {
let mut filter = HashSet::new();