From b197945ef71fed3d982eee63f65a00c1e8fa50b7 Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Mon, 16 Jun 2025 09:29:29 +0200 Subject: [PATCH] chore: bump versions in preparation for release --- host-macros/Cargo.toml | 2 +- host/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/host-macros/Cargo.toml b/host-macros/Cargo.toml index 52ffcbbc..e9291b7f 100644 --- a/host-macros/Cargo.toml +++ b/host-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trouble-host-macros" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "Apache-2.0 OR MIT" description = "An async Rust BLE host - Derive macros crate" diff --git a/host/Cargo.toml b/host/Cargo.toml index 061c174e..c90f43b0 100644 --- a/host/Cargo.toml +++ b/host/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trouble-host" -version = "0.1.0" +version = "0.2.0" edition = "2021" description = "An async Rust BLE host" license = "Apache-2.0 OR MIT" @@ -27,7 +27,7 @@ embassy-time = "0.4" embassy-futures = "0.1" futures = { version = "0.3", default-features = false } heapless = "0.8" -trouble-host-macros = { path = "../host-macros", version = "0.1.0", optional = true } +trouble-host-macros = { path = "../host-macros", version = "0.2.0", optional = true } p256 = { version = "0.13.2", default-features = false, features = ["ecdh","arithmetic"], optional = true } rand_core = "0.6" rand_chacha = { version = "0.3", default-features = false, optional = true }