Skip to content

Commit

Permalink
Merge pull request #228 from quartiq/release-v0.13.0
Browse files Browse the repository at this point in the history
release v0.13.0
  • Loading branch information
jordens authored Jul 10, 2024
2 parents 85f2a88 + 7aec18b commit 905dbea
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,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](https://github.com/quartiq/miniconf/compare/v0.12.0...v0.13.0) - 2024-07-10
## [0.13.0](https://github.com/quartiq/miniconf/compare/v0.12.0...v0.13.0) - 2024-07-10

### Changed

Expand Down
4 changes: 2 additions & 2 deletions miniconf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "miniconf"
# Sync all crate versions and the py client
version = "0.12.0"
version = "0.13.0"
authors = ["James Irwin <[email protected]>", "Ryan Summers <[email protected]>", "Robert Jördens <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -13,7 +13,7 @@ resolver = "2"

[dependencies]
serde = { version = "1.0.120", default-features = false }
miniconf_derive = { path = "../miniconf_derive", version = "0.12", optional = true }
miniconf_derive = { path = "../miniconf_derive", version = "0.13", optional = true }
itoa = "1.0.4"
serde-json-core = { version = "0.5.1", optional = true }
postcard = { version = "1.0.8", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions miniconf_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "miniconf_cli"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/quartiq/miniconf"
Expand All @@ -13,7 +13,7 @@ categories = ["no-std", "config", "rust-patterns", "parsing"]
embedded-io = "0.6.1"
embedded-io-async = "0.6.1"
heapless = "0.8.0"
miniconf = { version = "0.12.0", path = "../miniconf", features = [
miniconf = { version = "0.13.0", path = "../miniconf", features = [
"json-core",
"postcard",
] }
Expand Down
2 changes: 1 addition & 1 deletion miniconf_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "miniconf_derive"
version = "0.12.0"
version = "0.13.0"
authors = ["James Irwin <[email protected]>", "Ryan Summers <[email protected]>", "Robert Jördens <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions miniconf_mqtt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "miniconf_mqtt"
version = "0.12.0"
version = "0.13.1"
authors = ["James Irwin <[email protected]>", "Ryan Summers <[email protected]>", "Robert Jördens <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -16,7 +16,7 @@ std = []
[lib]

[dependencies]
miniconf = { version = "0.12", features = ["json-core"], default-features = false, path = "../miniconf" }
miniconf = { version = "0.13", features = ["json-core"], default-features = false, path = "../miniconf" }
minimq = "0.9.0"
smlang = "0.7"
embedded-io = "0.6"
Expand Down
2 changes: 1 addition & 1 deletion miniconf_mqtt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use core::fmt::Display;

use heapless::{String, Vec};
use log::{debug, error, info, warn};
use log::{error, info, warn};
use miniconf::{IntoKeys, JsonCoreSlash, NodeIter, Path, Traversal, TreeKey};
pub use minimq;
use minimq::{
Expand Down
2 changes: 1 addition & 1 deletion py/miniconf-mqtt/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ text = "MIT"
[project]
name = "miniconf-mqtt"
# Note: keep this in sync with Cargo.toml
version = "0.12.0"
version = "0.13.0"
description = "Utilities for configuring Miniconf-configurable devices"
authors = [
{ name = "Ryan Summers", email = "[email protected]" },
Expand Down

0 comments on commit 905dbea

Please sign in to comment.