diff --git a/CHANGELOG.md b/CHANGELOG.md index 55e07e1..f827098 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ 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] - 2023-06-22 + +* Minimq bumped to v0.7 + ## [0.1.1] - 2022-12-06 ### Added @@ -21,5 +25,6 @@ command is registered. Library initially released on crates.io +[0.2.0]: https://github.com/quartiq/minireq/releases/tag/v0.2.0 [0.1.1]: https://github.com/quartiq/minireq/releases/tag/v0.1.1 [0.1.0]: https://github.com/quartiq/minireq/releases/tag/v0.1.0 diff --git a/Cargo.toml b/Cargo.toml index a4eb6d9..9eaa16f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ categories = ["no-std", "config", "embedded", "parsing"] repository = "https://github.com/quartiq/minireq" [dependencies] -minimq = "0.6" +minimq = "0.7" heapless = {version = "0.7", features = ["serde"] } serde-json-core = "0.5" log = "0.4" @@ -18,8 +18,11 @@ serde = { version = "1", features = ["derive"], default-features = false } smlang = "0.6" [dev-dependencies] -std-embedded-nal = "0.1" std-embedded-time = "0.1" tokio = { version = "1.9", features = ["rt-multi-thread", "time", "macros"] } env_logger = "0.9" -embedded-nal = "0.6" +embedded-nal = "0.7" + +[dev-dependencies.std-embedded-nal] +git = "https://gitlab.com/ryan-summers/std-embedded-nal.git" +branch = "feature/0.7"