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)**
|
**Version 0.3.0**
|
||||||
- Support interlaced images
|
- Properly decode interlaced images
|
||||||
- Allow converting between progressive and 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
|
- Fix a bug that would cause oxipng to crash on very small images
|
||||||
|
|
||||||
**Version 0.2.2**
|
**Version 0.2.2**
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxipng"
|
name = "oxipng"
|
||||||
version = "0.2.2"
|
version = "0.3.0"
|
||||||
authors = ["Joshua Holmer <jholmer.in@gmail.com>"]
|
authors = ["Joshua Holmer <jholmer.in@gmail.com>"]
|
||||||
description = "A lossless PNG compression optimizer"
|
description = "A lossless PNG compression optimizer"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ use std::collections::HashSet;
|
||||||
use std::io::{Write, stderr};
|
use std::io::{Write, stderr};
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
const VERSION_STRING: &'static str = "0.2.2";
|
const VERSION_STRING: &'static str = "0.3.0";
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let mut filter = HashSet::new();
|
let mut filter = HashSet::new();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue