From 262bbf003ae9aeda8919e464755d6231e06c9655 Mon Sep 17 00:00:00 2001 From: Joshua Holmer Date: Thu, 10 Mar 2016 14:50:35 -0500 Subject: [PATCH] Release version 0.2.1 [ci skip] --- Cargo.toml | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f6c27e91d..edf09a217 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxipng" -version = "0.2.0" +version = "0.2.1" authors = ["Joshua Holmer "] description = "A lossless PNG compression optimizer" license = "MIT" diff --git a/src/main.rs b/src/main.rs index e5a4e16ae..7f6955338 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.0"; +const VERSION_STRING: &'static str = "0.2.1"; fn main() { let mut filter = HashSet::new();