Skip to content

Commit

Permalink
Merge pull request #59 from burnoo/api-20
Browse files Browse the repository at this point in the history
Update to API 20
  • Loading branch information
dcoles authored Mar 31, 2023
2 parents f7de5df + 4e4e4da commit d5a3d14
Show file tree
Hide file tree
Showing 4 changed files with 1,018 additions and 740 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Rust for Flipper Zero 🐬❤️🦀

[![crates.io](https://img.shields.io/crates/v/flipperzero)](https://crates.io/crates/flipperzero)
[![Flipper Zero API](https://img.shields.io/badge/Flipper%20Zero%20API-14.0-orange)](https://github.com/flipperdevices/flipperzero-firmware/blob/0.77.1/firmware/targets/f7/api_symbols.csv)
[![Flipper Zero API](https://img.shields.io/badge/Flipper%20Zero%20API-20.0-orange)](https://github.com/flipperdevices/flipperzero-firmware/blob/0.80.1/firmware/targets/f7/api_symbols.csv)
[![docs.rs](https://img.shields.io/docsrs/flipperzero)](https://docs.rs/flipperzero)
[![MIT license](https://img.shields.io/crates/l/flipperzero)](LICENSE)

Expand All @@ -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 14.0 ([flipperzero-firmware@0.77.1](https://github.com/flipperdevices/flipperzero-firmware/tree/0.77.1)).
Currently supports SDK 20.0 ([flipperzero-firmware@0.80.1](https://github.com/flipperdevices/flipperzero-firmware/tree/0.80.1)).

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.8.x | 20.0 |
| 0.7.x | 14.0 |
| 0.6.x | 11.2 |
| 0.5.x | 10.1 |
Expand Down
8 changes: 4 additions & 4 deletions crates/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.7.2"
version = "0.8.0"
description = "Rust for Flipper Zero"
edition = "2021"
rust-version = "1.68.0"
Expand All @@ -17,9 +17,9 @@ readme = "../README.md"
license = "MIT"

[workspace.dependencies]
flipperzero-sys = { path = "sys", version = "0.7.0" }
flipperzero-rt = { path = "rt", version = "0.7.0" }
flipperzero-alloc = { path = "alloc", version = "0.7.0" }
flipperzero-sys = { path = "sys", version = "0.8.0" }
flipperzero-rt = { path = "rt", version = "0.8.0" }
flipperzero-alloc = { path = "alloc", version = "0.8.0" }
ufmt = "0.2.0"

[profile.dev]
Expand Down
Loading

0 comments on commit d5a3d14

Please sign in to comment.