From 1b0c21e66ff60dfe72f2183eb19fd2c4dabd50a8 Mon Sep 17 00:00:00 2001 From: Emil Fresk Date: Fri, 6 Dec 2024 14:13:17 +0100 Subject: [PATCH] Add default docs feature to rtic-macros --- rtic-macros/Cargo.toml | 5 ++++- rtic/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/rtic-macros/Cargo.toml b/rtic-macros/Cargo.toml index 904aa83cc101..8611472c0677 100644 --- a/rtic-macros/Cargo.toml +++ b/rtic-macros/Cargo.toml @@ -22,7 +22,10 @@ name = "rtic-macros" readme = "../README.md" repository = "https://github.com/rtic-rs/rtic" -version = "2.1.1" +version = "2.1.2" + +[package.metadata.docs.rs] +features = ["test-template"] [lib] proc-macro = true diff --git a/rtic/Cargo.toml b/rtic/Cargo.toml index 2de01eba51e5..2f448f769d7e 100644 --- a/rtic/Cargo.toml +++ b/rtic/Cargo.toml @@ -31,7 +31,7 @@ riscv = { version = "0.12.1", optional = true } cortex-m = { version = "0.7.0", optional = true } bare-metal = "1.0.0" portable-atomic = { version = "1", default-features = false } -rtic-macros = { path = "../rtic-macros", version = "=2.1.1" } +rtic-macros = { path = "../rtic-macros", version = "=2.1.2" } rtic-core = "1" critical-section = "1"