diff --git a/CHANGELOG.md b/CHANGELOG.md index 97ca91d..ce23746 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.5.5] - 2024-09-26 + - Add raw parameter to command builder. ## [0.5.4] - 2023-09-18 diff --git a/Cargo.toml b/Cargo.toml index 55362fb..94e841c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "at-commands" -version = "0.5.4" +version = "0.5.5" authors = ["Dion Dokter "] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 12c0999..bb5597c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ //! Crate for building and parsing AT Commands -#![cfg_attr(all(not(test), not(feature = "std")), no_std)] +#![cfg_attr(not(test), no_std)] #![deny(missing_docs)] pub mod builder;