You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+37-7Lines changed: 37 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,39 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic
6
6
7
7
## [Unreleased]
8
8
9
-
* None
9
+
### Changed
10
+
11
+
- None
12
+
13
+
### Added
14
+
15
+
- None
16
+
17
+
### Removed
18
+
19
+
- None
20
+
21
+
## [Version 0.8.0] - 2024-07-12
22
+
23
+
### Changed
24
+
25
+
- Fixed a bug when seeking backwards through files.
26
+
- Updated to `heapless-0.8` and `embedded-hal-bus-0.2`.
27
+
- No longer panics if the close fails when a `Volume` is dropped - the failure is instead ignored.
28
+
29
+
### Added
30
+
31
+
-`File` now has a `flush()` method.
32
+
-`File` now has a `close()` method.
33
+
34
+
### Removed
35
+
36
+
-__Breaking Change__: Removed `CS` type-param on `SdCard` - now we use the `SpiDevice` chip-select (closing [#126])
37
+
-__Breaking Change__: Removed the 74 clock cycle 'init' sequence - now applications must do this
10
38
11
39
## [Version 0.7.0] - 2024-02-04
12
40
13
-
## Changed
41
+
###Changed
14
42
15
43
-__Breaking Change__: `Volume`, `Directory` and `File` are now smart! They hold references to the thing they were made from, and will clean themselves up when dropped. The trade-off is you can can't open multiple volumes, directories or files at the same time.
16
44
-__Breaking Change__: Renamed the old types to `RawVolume`, `RawDirectory` and `RawFile`
@@ -19,18 +47,19 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic
19
47
- You can now open directories multiple times without error
20
48
- Updated to [embedded-hal] 1.0
21
49
22
-
## Added
50
+
###Added
23
51
24
52
-`RawVolume`, `RawDirectory` and `RawFile` types (like the old `Volume`, `Directory` and `File` types)
25
53
- New method `make_dir_in_dir`
26
54
- Empty strings and `"."` convert to `ShortFileName::this_dir()`
27
55
- New API `change_dir` which changes a directory to point to some child directory (or the parent) without opening a new directory.
28
56
- Updated 'shell' example to support `mkdir`, `tree` and relative/absolute paths
0 commit comments