Releases: jrast/littlefs-python
Releases · jrast/littlefs-python
v0.16.0
v0.15.0
What's Changed
- update littlefs core from v2.11.0 to v2.11.2 by @BrianPugh in #141
- Fix compiling in certain environments by including
limits.hby @BrianPugh in #139 - Prebuilt wheels for Python 3.14. No longer build prebuilt wheels for Python 3.7. By @BrianPugh in #140
Full Changelog: v0.14.0...v0.15.0
v0.14.0
v0.13.3
v0.13.2
v0.13.1
v0.13.0
What's Changed
- Update LFS to v2.10.0 by @BrianPugh in #114
- Prebuilt wheels for CPython 3.13 by @BrianPugh in #115
Full Changelog: v0.12.0...v0.13.0
v0.12.0
What's Changed
- have ci build cp37 wheels by @BrianPugh in #98
- Add --compact and --no-pad options to create CLI. by @BrianPugh in #99
Full Changelog: v0.11.0...v0.12.0
v0.11.0
Breaking Changes
- CLI has been reworked in #96
- Commands now take positional arguments in an intuitive order.
unpackhas been renamed toextract.
# old $ littlefs-python create my_dir/ --image=lfs.bin --block-size=4096 --fs-size=1mb # new $ littlefs-python create my_dir/ lfs.bin --block-size=4096 --fs-size=1mb # If output binary file not specified, defaults to output "lfs.bin" $ littlefs-python create my_dir/ --block-size=4096 --fs-size=1mb
# old $ littlefs-python unpack my_dir/ --image=lfs.bin --block-size=4096 --fs-size=1mb # new (--fs-size is now inferred from binary) $ littlefs-python extract lfs.bin my_dir/ --block-size=4096 # if output directory not specified, defaults to current directory $ littlefs-python extract lfs.bin --block-size=4096
# old $ littlefs-python list --image=lfs.bin --block-size=4096 --fs-size=1mb # new (--fs-size is now inferred from binary) $ littlefs-python list lfs.bin --block-size=4096
What's Changed
- update LittleFS to v2.9.3 by @BrianPugh in #97
Full Changelog: v0.10.3...v0.11.0