Change version to 0.3.3 and complete the changelog

This commit is contained in:
Rafał Harabień 2019-11-10 23:32:56 +01:00
parent 3fb3a993fe
commit 75789c6a00
2 changed files with 19 additions and 8 deletions

View File

@ -1,19 +1,30 @@
Changelog Changelog
========= =========
Version 0.3.2 0.3.3 (2019-11-10)
------------- ------------------
Features: Bug fixes:
* Add missing characters to the whitelist for long file name (`^`, `#`, `&`)
* Fix invalid short file names for `.` and `..` entries when creating a new directory
* Fix `no_std` build
Misc changes:
* Fix compiler warnings
* Improve documentation
0.3.2 (2018-12-29)
------------------
New features:
* Add `format_volume` function for initializing a FAT filesystem on a partition * Add `format_volume` function for initializing a FAT filesystem on a partition
* Add more checks of filesystem correctness when mounting * Add more checks of filesystem correctness when mounting
Fixes: Bug fixes:
* Clear directory returned from `create_dir` method - upgrade ASAP if this method is used * Clear directory returned from `create_dir` method - upgrade ASAP if this method is used
* Fix handling of FSInfo sector on FAT32 volumes with sector size different than 512 - upgrade ASAP if such sector size is used * Fix handling of FSInfo sector on FAT32 volumes with sector size different than 512 - upgrade ASAP if such sector size is used
* Use `write_all` in `serialize` method for FSInfo sector - previously it could have been improperly updated * Use `write_all` in `serialize` method for FSInfo sector - previously it could have been improperly updated
Version 0.3.1 0.3.1 (2018-10-20)
------------- ------------------
New features: New features:
* Increased file creation time resolution from 2s to 1/100s * Increased file creation time resolution from 2s to 1/100s
* Added oem_cp_converter filesystem option allowing to provide custom short name decoder * Added oem_cp_converter filesystem option allowing to provide custom short name decoder
@ -21,7 +32,7 @@ New features:
* Added marking volume as dirty on first write and not-dirty on unmount * Added marking volume as dirty on first write and not-dirty on unmount
* Added support for reading volume label from root directory * Added support for reading volume label from root directory
Fixes: Bug fixes:
* Fixed handling of short names with spaces in the middle - all characters after first space in 8.3 components were * Fixed handling of short names with spaces in the middle - all characters after first space in 8.3 components were
stripped before stripped before
* Fixed decoding 0xE5 character in first byte of short name - if first character of short name is equal to 0xE5, * Fixed decoding 0xE5 character in first byte of short name - if first character of short name is equal to 0xE5,

View File

@ -1,6 +1,6 @@
[package] [package]
name = "fatfs" name = "fatfs"
version = "0.3.2" version = "0.3.3"
authors = ["Rafał Harabień <rafalh92@outlook.com>"] authors = ["Rafał Harabień <rafalh92@outlook.com>"]
repository = "https://github.com/rafalh/rust-fatfs" repository = "https://github.com/rafalh/rust-fatfs"
readme = "README.md" readme = "README.md"