diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b3bc3a3..0f53f4c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ### Added +### Changed + +### Removed + +## [0.12.0] + +### Added + - `flipperzero::gpio::i2c`, providing a Rust interface to the external 3.3V I2C bus over GPIO pins C0 and C1, as well as the internal (power) I2C bus. - `flipperzero::furi::string::FuriString::into_raw`, allowing ownership @@ -216,7 +224,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.11.0...HEAD +[Unreleased]: https://github.com/flipperzero-rs/flipperzero/compare/v0.12.0...HEAD +[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 [0.9.0]: https://github.com/flipperzero-rs/flipperzero/releases/tag/v0.9.0 diff --git a/README.md b/README.md index 83405789..1635e6cf 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 | 73.0 | +| 0.12.x | 73.0 | | 0.11.x | 35.0 | | 0.10.x | 28.2 | | 0.9.x | 23.0 | diff --git a/crates/Cargo.toml b/crates/Cargo.toml index d811f51f..b7cc9e95 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.11.0" +version = "0.12.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.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" diff --git a/crates/test/Cargo.toml b/crates/test/Cargo.toml index f0ea2e1a..b1dc22b1 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.11.0", path = "macros" } +flipperzero-test-macros = { version = "=0.12.0", path = "macros" } ufmt.workspace = true [lib]