From cdc6cb3ba392dff08c6215e72fce6ce032b25c32 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Thu, 2 Jan 2025 19:12:06 +0100 Subject: [PATCH] Release v0.2.0 --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..67280e2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## 0.2.0 - 2024-01-02 + +- Update `embassy-time` from v0.3 to v0.4. diff --git a/Cargo.lock b/Cargo.lock index 50fff76..ca04236 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -22,7 +22,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "bt-hci" -version = "0.1.2" +version = "0.2.0" dependencies = [ "defmt", "embassy-sync", diff --git a/Cargo.toml b/Cargo.toml index f1f809a..82a3b0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "MIT OR Apache-2.0" name = "bt-hci" repository = "https://github.com/embassy-rs/bt-hci" -version = "0.1.2" +version = "0.2.0" documentation = "https://docs.rs/bt-hci" keywords = ["bluetooth", "hci", "BLE"] categories = ["embedded", "hardware-support", "no-std"]