From 34b7502a7da65e2f585450ca3485f7a2c3cdabef Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes <git@mathijs.vd-nes.nl> Date: Sat, 17 Feb 2018 20:11:59 +0100 Subject: [PATCH] Bump version and update README --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 128deba5..2ebcd012 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zip" -version = "0.3.0" +version = "0.3.1" authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>"] license = "MIT" repository = "https://github.com/mvdnes/zip-rs.git" diff --git a/README.md b/README.md index 051dbe9c..5c07a68f 100644 --- a/README.md +++ b/README.md @@ -33,14 +33,14 @@ With all default features: ```toml [dependencies] -zip = "0.2" +zip = "0.3" ``` Without the default features: ```toml [dependencies] -zip = { version = "0.2", default-features = false } +zip = { version = "0.3", default-features = false } ``` Examples