rafalh / rust-fatfs

A FAT filesystem library implemented in Rust.
MIT License
281 stars 50 forks source link

Plans for 0.4.0 release? #40

Closed phil-opp closed 3 years ago

phil-opp commented 3 years ago

I just noticed that the latest version on crates.io is still 0.3.4, even though the master branch was already bumped to 0.4.0 six months ago. Are there any remaining issues or planned changes for v0.4.0? Or is it just a work-in-progress version that is not going to be released anytime soon?

For context, I'm planning to use fatfs in the rust-osdev/bootloader project (see https://github.com/rust-osdev/bootloader/pull/130) and I'm not sure whether I should use v0.3.4 or already prepare for an upcoming v0.4.0 release by building on top of the master branch.

phil-opp commented 3 years ago

For now I used the v0.3.4 release. It works great without any major problems. Thanks a lot for your work on this, @rafalh!

rafalh commented 3 years ago

Glad you find it useful. Actually I was planning to release v0.4.0 for quite some time and I'm hoping to do so soon but until then 0.3.4 should be fine unless you have specific problems that 'v0.4.0 resolves (most v0.4.0 changes are related to no_std builds support and multi-threading)

phil-opp commented 3 years ago

Thanks a lot for the info!