From 7a0ab876918dd27cb515fbb075440a3a26b48ff1 Mon Sep 17 00:00:00 2001 From: Andrew Walbran Date: Tue, 21 May 2024 17:16:35 +0100 Subject: [PATCH] Release v0.3.0. --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8751c35..4ece711 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,16 @@ # 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.3.0 + +- Update to `usb-device` 0.3 ([#17]). + +[#17]: https://github.com/nrf-rs/nrf-usbd/pull/17 + ## 0.2.0 - 2022-09-27 - Update to `critical-section` 1.0 ([#9]). @@ -15,7 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## 0.1.1 - 2022-01-03 - Use `critical-section` for critical sections instead of `cortex_m::interrupt::free`. This allows -customizing the critical section implementation, needed for using with the nRF SoftDevices. + customizing the critical section implementation, needed for using with the nRF SoftDevices. ## 0.1.0 - 2021-07-07 diff --git a/Cargo.toml b/Cargo.toml index 7766add..cec7066 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ default-members = [".", "example"] [package] name = "nrf-usbd" -version = "0.2.0" +version = "0.3.0" edition = "2018" description = "USB driver for nRF microcontrollers" license = "MIT OR Apache-2.0"