Skip to content

Releases: jrast/littlefs-python

v0.16.0

09 Nov 00:29
a1477be

Choose a tag to compare

What's Changed

  • Add repl command to the CLI to interact with an existing littlefs image. By @radrogow in #143

New Contributors

Full Changelog: v0.15.0...v0.16.0

v0.15.0

28 Oct 16:39
97ea16b

Choose a tag to compare

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

21 May 13:20
a54e0f5

Choose a tag to compare

Features

Full Changelog: v0.13.3...v0.14.0

v0.13.3

20 Mar 13:09

Choose a tag to compare

v0.13.2

12 Feb 13:57

Choose a tag to compare

Bug Fixes

  • The CLI list command now has --block-size as required. By @niggowai in #119

New Contributors

Full Changelog: v0.13.1...v0.13.2

v0.13.1

23 Dec 13:54

Choose a tag to compare

Bug Fixes

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

v0.13.0

12 Dec 22:19

Choose a tag to compare

What's Changed

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

v0.12.0

06 Jul 16:01
2c79c66

Choose a tag to compare

What's Changed

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

v0.11.0

04 Jul 13:20

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

Choose a tag to compare

What's Changed

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