Release v0.2.2 [ci skip]

This commit is contained in:
Joshua Holmer 2016-03-21 12:28:20 -04:00
parent c1031b1ddd
commit 489964add2
3 changed files with 4 additions and 3 deletions

View file

@ -1,6 +1,7 @@
**Version 0.2.2 (unreleased)** **Version 0.2.2**
- Limit number of threads to 1.5x number of cores - Limit number of threads to 1.5x number of cores
- Significantly improve memory usage, especially with high optimization levels. ([#32](https://github.com/shssoichiro/oxipng/issues/32)) - Significantly improve memory usage, especially with high optimization levels. ([#32](https://github.com/shssoichiro/oxipng/issues/32))
- Refactor output code ([#19](https://github.com/shssoichiro/oxipng/issues/19))
**Version 0.2.1** **Version 0.2.1**
- Add rustdoc for public methods and structs - Add rustdoc for public methods and structs

View file

@ -1,6 +1,6 @@
[package] [package]
name = "oxipng" name = "oxipng"
version = "0.2.1" version = "0.2.2"
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"

View file

@ -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.1"; const VERSION_STRING: &'static str = "0.2.2";
fn main() { fn main() {
let mut filter = HashSet::new(); let mut filter = HashSet::new();