Version 0.3.0 [ci skip]
This commit is contained in:
parent
0b7f40afd1
commit
548c69cad7
3 changed files with 5 additions and 5 deletions
|
|
@ -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**
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue