Skip to content

Commit

Permalink
Merge pull request #114 from jrast/lfs-v2.10.0
Browse files Browse the repository at this point in the history
Update LFS to v2.10.0
  • Loading branch information
BrianPugh authored Dec 12, 2024
2 parents 80a0a43 + 9b77570 commit 37c3dd1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ from scratch the latest version is recommended.
.. csv-table::
:header: "LittleFS Version", "Package Version", "LittleFS File System Version"

2.9.0, v0.11.X, 2.0 / 2.1 [#f1]_
2.10.0, v0.13.X, 2.0 / 2.1 [#f1]_
2.9.0, v0.12.X v0.11.X, 2.0 / 2.1 [#f1]_
2.9.0, v0.10.X, 2.0 / 2.1 [#f1]_
2.8.0, 0.8.X-0.9.X, 2.0 / 2.1 [#f1]_
2.7.0, 0.7.X, 2.0 / 2.1 [#f1]_
Expand Down
6 changes: 3 additions & 3 deletions test/lfs/test_dir_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_dir_close(testfs):


def test_dir_read(testfs):
dh = lfs.dir_open(testfs, "")
dh = lfs.dir_open(testfs, "/")
info = lfs.dir_read(testfs, dh)
assert info.name == "."

Expand All @@ -35,7 +35,7 @@ def test_dir_read(testfs):


def test_dir_read_overflow(testfs):
dh = lfs.dir_open(testfs, "")
dh = lfs.dir_open(testfs, "/")

# There are three directories: ., .., testdir
for _ in range(3):
Expand All @@ -49,7 +49,7 @@ def test_dir_read_overflow(testfs):

def test_dir_rewind(testfs):
dirs = [".", "..", "testdir"]
dh = lfs.dir_open(testfs, "")
dh = lfs.dir_open(testfs, "/")

for name in dirs:
info = lfs.dir_read(testfs, dh)
Expand Down
2 changes: 1 addition & 1 deletion test/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

def test_version():
"""Test if the versions of littlefs can be imported"""
assert littlefs.__LFS_VERSION__ == (2, 9)
assert littlefs.__LFS_VERSION__ == (2, 10)
assert littlefs.__LFS_DISK_VERSION__ == (2, 1)

0 comments on commit 37c3dd1

Please sign in to comment.