From eca77b61181813335a05be5d425df6e1dd36763e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Harabie=C5=84?= Date: Wed, 20 Jun 2018 17:56:03 +0200 Subject: [PATCH] Change version to 0.3.0 --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 46ba8da..ba6e1e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fatfs" -version = "0.2.0" +version = "0.3.0" authors = ["Rafał Harabień "] repository = "https://github.com/rafalh/rust-fatfs" readme = "README.md" diff --git a/README.md b/README.md index 54622c0..eea3772 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Usage Add this to your `Cargo.toml`: [dependencies] - fatfs = "0.2" + fatfs = "0.3" and this to your crate root: @@ -48,7 +48,7 @@ no_std usage Add this to your `Cargo.toml`: [dependencies] - fatfs = { version = "0.2", features = ["core_io"], default-features = false } + fatfs = { version = "0.3", features = ["core_io"], default-features = false } Note: LFN support requires `alloc` and `core_io/collections` features and makes use of `alloc` crate. You may have to provide a memory allocator implementation.