From 489964add2a789498630b18e0dcd4b3c05c7e576 Mon Sep 17 00:00:00 2001 From: Joshua Holmer Date: Mon, 21 Mar 2016 12:28:20 -0400 Subject: [PATCH] Release v0.2.2 [ci skip] --- CHANGELOG.md | 3 ++- Cargo.toml | 2 +- src/main.rs | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79d79fab..05df3afb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ -**Version 0.2.2 (unreleased)** +**Version 0.2.2** - 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)) + - Refactor output code ([#19](https://github.com/shssoichiro/oxipng/issues/19)) **Version 0.2.1** - Add rustdoc for public methods and structs diff --git a/Cargo.toml b/Cargo.toml index 05f0e55c..c60e5c76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxipng" -version = "0.2.1" +version = "0.2.2" authors = ["Joshua Holmer "] description = "A lossless PNG compression optimizer" license = "MIT" diff --git a/src/main.rs b/src/main.rs index 7f695533..18dce743 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,7 +9,7 @@ use std::collections::HashSet; use std::io::{Write, stderr}; use std::path::PathBuf; -const VERSION_STRING: &'static str = "0.2.1"; +const VERSION_STRING: &'static str = "0.2.2"; fn main() { let mut filter = HashSet::new();