Skip to content

Commit

Permalink
Support API 39.2 as used in OFW 0.93 and UFW 95
Browse files Browse the repository at this point in the history
  • Loading branch information
MarSik committed Dec 7, 2023
1 parent c667301 commit 95ead55
Show file tree
Hide file tree
Showing 4 changed files with 630 additions and 295 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@ This means it's not possible to use anything in the [`std`](https://doc.rust-lan

## SDK version

Currently supports SDK 35.0 ([flipperzero-firmware@0.89.0](https://github.com/flipperdevices/flipperzero-firmware/tree/0.89.0)).
Currently supports SDK 39.2 ([flipperzero-firmware@0.93.0](https://github.com/flipperdevices/flipperzero-firmware/tree/0.93.0)).

The crate major version number will be updated after a bump in [API version](https://github.com/flipperdevices/flipperzero-firmware/blob/release/firmware/targets/f7/api_symbols.csv) in the Flipper Zero firmware.

| Crate version | API version |
|---------------|-------------|
| 0.12.x | 39.2 |
| 0.11.x | 35.0 |
| 0.10.x | 28.2 |
| 0.9.x | 23.0 |
Expand Down
10 changes: 5 additions & 5 deletions crates/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.11.0"
version = "0.12.0"
description = "Rust for Flipper Zero"
edition = "2021"
rust-version = "1.70.0"
Expand All @@ -19,10 +19,10 @@ readme = "../README.md"
license = "MIT"

[workspace.dependencies]
flipperzero-sys = { path = "sys", version = "0.11.0" }
flipperzero-rt = { path = "rt", version = "0.11.0" }
flipperzero-alloc = { path = "alloc", version = "0.11.0" }
flipperzero-test = { path = "test", version = "0.11.0" }
flipperzero-sys = { path = "sys", version = "0.12.0" }
flipperzero-rt = { path = "rt", version = "0.12.0" }
flipperzero-alloc = { path = "alloc", version = "0.12.0" }
flipperzero-test = { path = "test", version = "0.12.0" }
ufmt = "0.2.0"
document-features = "0.2.0"

Expand Down
Loading

0 comments on commit 95ead55

Please sign in to comment.