Change version to 0.3.0

This commit is contained in:
Rafał Harabień 2018-06-20 17:56:03 +02:00
parent 0dc643f7fe
commit eca77b6118
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "fatfs"
version = "0.2.0"
version = "0.3.0"
authors = ["Rafał Harabień <rafalh1992@o2.pl>"]
repository = "https://github.com/rafalh/rust-fatfs"
readme = "README.md"

View File

@ -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.