Skip to content

Commit 15f72ec

Browse files
committed
chore: v0.1.2
1 parent 69b95cf commit 15f72ec

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Add `embedded-cli` and necessary crates to your app:
4747

4848
```toml
4949
[dependencies]
50-
embedded-cli = "0.1.1"
50+
embedded-cli = "0.1.2"
5151
embedded-io = "0.6.1"
5252
ufmt = "0.2.0"
5353
```
@@ -331,14 +331,14 @@ Memory usage might change in future versions, but I'll try to keep this table up
331331

332332
| Features | ROM, bytes | Static RAM, bytes |
333333
|---------------------------------|:----------:|:-----------------:|
334-
| | 9006 | 161 |
335-
| `autocomplete` | 10906 | 181 |
336-
| `history` | 11094 | 193 |
337-
| `autocomplete` `history` | 12588 | 213 |
338-
| `help` | 11706 | 551 |
339-
| `autocomplete` `help` | 13452 | 567 |
340-
| `history` `help` | 13552 | 583 |
341-
| `autocomplete` `history` `help` | 15056 | 599 |
334+
| | 8588 | 161 |
335+
| `autocomplete` | 10340 | 181 |
336+
| `history` | 10696 | 193 |
337+
| `autocomplete` `history` | 12162 | 213 |
338+
| `help` | 11228 | 551 |
339+
| `autocomplete` `help` | 13052 | 567 |
340+
| `history` `help` | 13434 | 583 |
341+
| `autocomplete` `history` `help` | 14854 | 599 |
342342

343343
This table is generated using this [script](examples/arduino/memory.sh).
344344
As table shows, enabling help adds quite a lot to memory usage since help usually requires a lot of text to be stored.

embedded-cli-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embedded-cli-macros"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Sviatoslav Kokurin <kokurinsv@gmail.com>"]
55
description = """
66
Macros for embedded-cli lib

embedded-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embedded-cli"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Sviatoslav Kokurin <kokurinsv@gmail.com>"]
55
description = """
66
CLI with autocompletion, help and history for embedded systems (like Arduino or STM32)
@@ -21,7 +21,7 @@ help = ["embedded-cli-macros/help"]
2121
history = []
2222

2323
[dependencies]
24-
embedded-cli-macros = { version = "0.1.0", path = "../embedded-cli-macros", optional = true }
24+
embedded-cli-macros = { version = "0.1.2", path = "../embedded-cli-macros", optional = true }
2525

2626
bitflags = "2.4.1"
2727
embedded-io = "0.6.1"

0 commit comments

Comments
 (0)