Skip to content

Commit ba27644

Browse files
authored
Merge pull request #120 from bsodmike/upgrade_heapless_0.8
Upgrade to heapless ^0.8
2 parents ec01477 + f880b51 commit ba27644

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic
66

77
## [Unreleased]
88

9-
* None
9+
### Changed
10+
11+
- Updated to `heapless` ^0.8
1012

1113
## [Version 0.7.0] - 2024-02-04
1214

13-
## Changed
15+
### Changed
1416

1517
- __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.
1618
- __Breaking Change__: Renamed the old types to `RawVolume`, `RawDirectory` and `RawFile`
@@ -19,15 +21,15 @@ The format is based on [Keep a Changelog] and this project adheres to [Semantic
1921
- You can now open directories multiple times without error
2022
- Updated to [embedded-hal] 1.0
2123

22-
## Added
24+
### Added
2325

2426
- `RawVolume`, `RawDirectory` and `RawFile` types (like the old `Volume`, `Directory` and `File` types)
2527
- New method `make_dir_in_dir`
2628
- Empty strings and `"."` convert to `ShortFileName::this_dir()`
2729
- New API `change_dir` which changes a directory to point to some child directory (or the parent) without opening a new directory.
2830
- Updated 'shell' example to support `mkdir`, `tree` and relative/absolute paths
2931

30-
## Removed
32+
### Removed
3133

3234
* None
3335

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ version = "0.7.0"
1414
byteorder = {version = "1", default-features = false}
1515
defmt = {version = "0.3", optional = true}
1616
embedded-hal = "1.0.0"
17-
heapless = "0.7"
17+
heapless = "^0.8"
1818
log = {version = "0.4", default-features = false, optional = true}
1919

2020
[dev-dependencies]

0 commit comments

Comments
 (0)