diff --git a/CHANGELOG.md b/CHANGELOG.md index aecef03e..7f123b4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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). -## Unreleased +## [0.9.0](https://github.com/quartiq/miniconf/compare/v0.8.0...v0.9.0) ### Changed diff --git a/Cargo.toml b/Cargo.toml index 73141716..877615e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "miniconf" # Don't forget to change `miniconf_derive`'s version as well. -version = "0.8.0" +version = "0.9.0" authors = ["James Irwin ", "Ryan Summers "] edition = "2021" license = "MIT" @@ -14,15 +14,14 @@ resolver = "2" [dependencies] serde = { version = "1.0.120", features = ["derive"], default-features = false } -miniconf_derive = { path = "miniconf_derive" , version = "0.8" } +miniconf_derive = { path = "miniconf_derive" , version = "0.9" } itoa = "1.0.4" - serde-json-core = { version = "0.5.1" , optional = true } log = {version = "0.4", optional = true } heapless = { version = "0.7", optional=true } -minimq = { git = "https://github.com/quartiq/minimq", optional = true} +minimq = { version = "0.8.0", optional = true } smlang = { version = "0.6", optional = true } -embedded-io = { version = "0.5", optional = true } +embedded-io = { version = "0.6", optional = true } [features] default = ["mqtt-client"] @@ -32,16 +31,11 @@ std = [] [dev-dependencies] machine = "0.3" -env_logger = "0.9" -std-embedded-nal = "0.1" +env_logger = "0.10" +std-embedded-nal = "0.2" tokio = { version = "1.9", features = ["rt-multi-thread", "time", "macros"] } std-embedded-time = "0.1" -[patch.crates-io.std-embedded-nal] -version = "0.1" -git = "https://gitlab.com/ryan-summers/std-embedded-nal" -branch = "feature/0.7" - [[example]] name = "mqtt" required-features = ["mqtt-client"] diff --git a/miniconf_derive/Cargo.toml b/miniconf_derive/Cargo.toml index 313e5879..e98be8fa 100644 --- a/miniconf_derive/Cargo.toml +++ b/miniconf_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miniconf_derive" -version = "0.8.0" +version = "0.9.0" authors = ["James Irwin ", "Ryan Summers "] edition = "2021" license = "MIT"