Skip to content

Releases: jrast/littlefs-python

v0.13.1

23 Dec 13:54
Compare
Choose a tag to compare

Bug Fixes

Full Changelog: v0.13.0...v0.13.1

v0.13.0

12 Dec 22:19
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.12.0...v0.13.0

v0.12.0

06 Jul 16:01
2c79c66
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.11.0...v0.12.0

v0.11.0

04 Jul 13:20
Compare
Choose a tag to compare

Breaking Changes

  • CLI has been reworked in #96
    • Commands now take positional arguments in an intuitive order.
    • unpack has been renamed to extract.
    # 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

Full Changelog: v0.10.3...v0.11.0

v0.10.3

17 Apr 18:17
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.10.2...v0.10.3

v0.10.2

16 Apr 23:06
Compare
Choose a tag to compare
  • update core littlefs v2.9.0 -> v2.9.1

Full Changelog: v0.10.1...v0.10.2

v0.10.1

22 Mar 17:44
dda2917
Compare
Choose a tag to compare

What's Changed

  • Fix mypy type-checking with regards to constants LFS_TYPE_REG/DIR. by @Krakonos in #88

Full Changelog: v0.10.0...v0.10.1

v0.10.0

12 Feb 17:04
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.9.3...v0.10.0

v0.9.3

16 Jan 18:00
Compare
Choose a tag to compare

What's Changed

  • Remove the f-string self-documenting expression for better Python 3.7 support by @adokitkat in #78
  • Note: Python3.7 support is not guaranteed moving forward.

New Contributors

Full Changelog: v0.9.2...v0.9.3

v0.9.2

21 Dec 07:14
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.9.1...v0.9.2