Skip to content

Commit

Permalink
Version 0.3.0 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Holmer committed Apr 5, 2016
1 parent 0b7f40a commit 548c69c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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**
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 548c69c

Please sign in to comment.