Skip to content

Commit 394e2f1

Browse files
authored
Merge pull request #16 from diondokter/v0.5.7
Release 0.5.7
2 parents aabc353 + 1b35a54 commit 394e2f1

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6-
74
## Unreleased
85

6+
## [0.5.7] - 2025-12-29
7+
8+
- Add write_hex function to builder [diondokter/at-commands#15](https://github.com/diondokter/at-commands/pull/15)
9+
- Updated defmt to 1.0
10+
911
## [0.5.6] - 2025-08-20
1012

1113
- Add raw string parameter to command parser [diondokter/at-commands#14](https://github.com/diondokter/at-commands/pull/14)

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "at-commands"
3-
version = "0.5.6"
3+
version = "0.5.7"
44
authors = ["Dion Dokter <diondokter@gmail.com>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -11,7 +11,7 @@ readme = "README.md"
1111
keywords = ["no_std", "AT", "Command", "Builder"]
1212

1313
[dependencies]
14-
defmt = { version = "0.3", optional = true }
14+
defmt = { version = "1.0.1", optional = true }
1515

1616
[features]
1717
defmt = ["dep:defmt"]

src/formatter.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,6 @@ pub fn parse_byte_to_hex(byte: u8) -> [u8; HEX_BYTE_SIZE] {
106106
#[cfg(test)]
107107
mod tests {
108108
use super::*;
109-
use alloc::format;
110-
use alloc::vec::Vec;
111109

112110
#[test]
113111
fn test_write_int() {

src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
#![cfg_attr(not(test), no_std)]
44
#![deny(missing_docs)]
55

6-
#[cfg(test)]
7-
extern crate alloc;
8-
96
pub mod builder;
107
pub(crate) mod formatter;
118
pub mod parser;

0 commit comments

Comments
 (0)