From 4f7524365589b2451e08761cb7218cd4a487b324 Mon Sep 17 00:00:00 2001 From: David Coles Date: Mon, 11 Nov 2024 19:58:27 -0800 Subject: [PATCH] Create 0.13.0 release --- CHANGELOG.md | 5 +++-- README.md | 2 +- crates/Cargo.toml | 10 +++++----- crates/test/Cargo.toml | 2 +- tools/Cargo.lock | 2 +- tools/Cargo.toml | 2 +- 6 files changed, 12 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21ac062f..cff3e582 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.13.0] ### Added @@ -238,7 +238,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.12.0...HEAD +[Unreleased]: https://github.com/flipperzero-rs/flipperzero/compare/v0.13.0...HEAD +[0.13.0]: https://github.com/flipperzero-rs/flipperzero/releases/tag/v0.13.0 [0.12.0]: https://github.com/flipperzero-rs/flipperzero/releases/tag/v0.12.0 [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 diff --git a/README.md b/README.md index 2cdee139..1c74c13b 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The crate major version number will be updated after a bump in [API version](htt | Crate version | API version | | ------------- | ----------- | -| Unreleased | 78.0 | +| 0.13.x | 78.0 | | 0.12.x | 73.0 | | 0.11.x | 35.0 | | 0.10.x | 28.2 | diff --git a/crates/Cargo.toml b/crates/Cargo.toml index b7cc9e95..57e1124a 100644 --- a/crates/Cargo.toml +++ b/crates/Cargo.toml @@ -3,7 +3,7 @@ members = ["alloc", "flipperzero", "sys", "rt", "test", "test/macros"] resolver = "2" [workspace.package] -version = "0.12.0" +version = "0.13.0" description = "Rust for Flipper Zero" edition = "2021" rust-version = "1.81.0" @@ -12,10 +12,10 @@ readme = "../README.md" license = "MIT" [workspace.dependencies] -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" } +flipperzero-sys = { path = "sys", version = "0.13.0" } +flipperzero-rt = { path = "rt", version = "0.13.0" } +flipperzero-alloc = { path = "alloc", version = "0.13.0" } +flipperzero-test = { path = "test", version = "0.13.0" } ufmt = "0.2.0" document-features = "0.2.0" diff --git a/crates/test/Cargo.toml b/crates/test/Cargo.toml index b1dc22b1..8779d2b2 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.12.0", path = "macros" } +flipperzero-test-macros = { version = "=0.13.0", path = "macros" } ufmt.workspace = true [lib] diff --git a/tools/Cargo.lock b/tools/Cargo.lock index e0b3470c..dc3f206b 100644 --- a/tools/Cargo.lock +++ b/tools/Cargo.lock @@ -311,7 +311,7 @@ checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" [[package]] name = "flipperzero-tools" -version = "0.12.0" +version = "0.13.0" dependencies = [ "bindgen", "bytes", diff --git a/tools/Cargo.toml b/tools/Cargo.toml index 1fb14542..42cac244 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -2,7 +2,7 @@ name = "flipperzero-tools" description = "Rust for Flipper Zero (tools)" license = "MIT" -version = "0.12.0" +version = "0.13.0" edition = "2021" [dependencies]