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.