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
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,18 @@
4
4
5
5
## Unreleased
6
6
7
+
- Added a new `map::remove_all_items()` API to remove all stored items in flash.
8
+
9
+
# 2.0.2 07-05-24
10
+
11
+
- Added check for too big items that won't ever fit in flash so it returns a good clear error.
12
+
13
+
# 2.0.1 06-05-24
14
+
15
+
- Implemented the `get_len` function for all built-in key types
16
+
17
+
# 2.0.0 06-05-24
18
+
7
19
-*Breaking:* Made the cache API a bit more strict. Caches now always have to be passed as a mutable reference.
8
20
The API before would lead to a lot of extra unncesessary binary size.
9
21
-*Breaking:* Removed the `StorageItem` trait in favor of two separate `Key` and `Value` traits. This helps cut
@@ -13,7 +25,6 @@
13
25
- Added `erase_all` function as a helper to erase the flash in a region.
14
26
-*Breaking:* Changed the way that queue iteration works. Now there's an `iter` function instead of two separate `peek_many` and `pop_many` functions. The new iter returns an entry from which you can get the data that was just peeked. If you want to pop it, then call the pop function on the entry.
15
27
- Added `arrayvec` feature that when activated impls the `Key` trait for `ArrayVec` and `ArrayString`.
16
-
- Added a new `map::remove_all_items()` API to remove all stored items in flash.
0 commit comments