Skip to content

Commit

Permalink
Release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoles committed Aug 30, 2023
1 parent 2c44c17 commit c667301
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 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-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)

Expand All @@ -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 |
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.10.0"
version = "0.11.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.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"

Expand Down
2 changes: 1 addition & 1 deletion crates/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit c667301

Please sign in to comment.