From f247cc0b3a3b0ad8f946c13afa4429217fb09196 Mon Sep 17 00:00:00 2001 From: Emil Fresk Date: Wed, 13 Apr 2022 19:27:38 +0200 Subject: [PATCH] Fixed `macro` version --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9797c82df1..bd18d12269 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,14 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top! ## [Unreleased] +## [v1.1.1] - 2022-04-13 + ### Added ### Fixed +- Fixed `marcro` version + ### Changed ## [v1.1.0] - 2022-04-13 diff --git a/Cargo.toml b/Cargo.toml index da4372b680..605182ae47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,14 +14,14 @@ name = "cortex-m-rtic" readme = "README.md" repository = "https://github.com/rtic-rs/cortex-m-rtic" -version = "1.1.0" +version = "1.1.1" [lib] name = "rtic" [dependencies] cortex-m = "0.7.0" -cortex-m-rtic-macros = { path = "macros", version = "1.0.0" } +cortex-m-rtic-macros = { path = "macros", version = "1.1.0" } rtic-monotonic = "1.0.0" rtic-core = "1.0.0" heapless = "0.7.7"