From c667301c257d04590c7a869a858789ee2c95133f Mon Sep 17 00:00:00 2001 From: David Coles Date: Mon, 28 Aug 2023 22:03:22 -0700 Subject: [PATCH] Release 0.11.0 --- CHANGELOG.md | 5 +++-- README.md | 6 +++--- crates/Cargo.toml | 10 +++++----- crates/test/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bacecdf2..8451c981 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). -## [Unreleased] +## [0.11.0] ### Added @@ -191,7 +191,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). Initial release! -[Unreleased]: https://github.com/flipperzero-rs/flipperzero/compare/v0.10.0...HEAD +[Unreleased]: https://github.com/flipperzero-rs/flipperzero/compare/v0.11.0...HEAD +[0.11.0]: https://github.com/flipperzero-rs/flipperzero/releases/tag/v0.11.0 [0.10.0]: https://github.com/flipperzero-rs/flipperzero/releases/tag/v0.10.0 [0.9.0]: https://github.com/flipperzero-rs/flipperzero/releases/tag/v0.9.0 [0.8.0]: https://github.com/flipperzero-rs/flipperzero/releases/tag/v0.8.0 diff --git a/README.md b/README.md index 9979b740..dd191b04 100644 --- a/README.md +++ b/README.md @@ -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-34.3-orange)](https://github.com/flipperdevices/flipperzero-firmware/blob/0.88.0/firmware/targets/f7/api_symbols.csv) +[![Flipper Zero API](https://img.shields.io/badge/Flipper%20Zero%20API-35.0-orange)](https://github.com/flipperdevices/flipperzero-firmware/blob/0.89.0/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) @@ -17,13 +17,13 @@ This means it's not possible to use anything in the [`std`](https://doc.rust-lan ## SDK version -Currently supports SDK 34.3 ([flipperzero-firmware@0.87.0](https://github.com/flipperdevices/flipperzero-firmware/tree/0.87.0)). +Currently supports SDK 35.0 ([flipperzero-firmware@0.89.0](https://github.com/flipperdevices/flipperzero-firmware/tree/0.89.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 | |---------------|-------------| -| Unreleased | 35.0 | +| 0.11.x | 35.0 | | 0.10.x | 28.2 | | 0.9.x | 23.0 | | 0.8.x | 20.0 | diff --git a/crates/Cargo.toml b/crates/Cargo.toml index d3ad99e9..9458feb6 100644 --- a/crates/Cargo.toml +++ b/crates/Cargo.toml @@ -10,7 +10,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.10.0" +version = "0.11.0" description = "Rust for Flipper Zero" edition = "2021" rust-version = "1.70.0" @@ -19,10 +19,10 @@ readme = "../README.md" license = "MIT" [workspace.dependencies] -flipperzero-sys = { path = "sys", version = "0.10.0" } -flipperzero-rt = { path = "rt", version = "0.10.0" } -flipperzero-alloc = { path = "alloc", version = "0.10.0" } -flipperzero-test = { path = "test", version = "0.10.0" } +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" } ufmt = "0.2.0" document-features = "0.2.0" diff --git a/crates/test/Cargo.toml b/crates/test/Cargo.toml index 12dd58eb..f0ea2e1a 100644 --- a/crates/test/Cargo.toml +++ b/crates/test/Cargo.toml @@ -13,7 +13,7 @@ autobenches = false [dependencies] flipperzero-sys.workspace = true -flipperzero-test-macros = { version = "=0.10.0", path = "macros" } +flipperzero-test-macros = { version = "=0.11.0", path = "macros" } ufmt.workspace = true [lib]