Skip to content

Commit

Permalink
release v0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jordens committed Nov 22, 2024
1 parent c7e9b11 commit 9a8323b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 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).

## [Unreleases](https://github.com/quartiq/miniconf/compare/v0.17.2...HEAD) - DATE
## [0.18.0](https://github.com/quartiq/miniconf/compare/v0.17.2...v0.18.0) - 2024-11-22

### Changed

Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
};
miniconf-mqtt-py = pkgs.python3Packages.buildPythonPackage {
pname = "miniconf";
version = "0.16.0";
version = "0.18.0";
src = self + "/py/miniconf-mqtt";
format = "pyproject";
buildInputs = [
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.17.2"
version = "0.18.0"
authors = [
"James Irwin <[email protected]>",
"Ryan Summers <[email protected]>",
Expand All @@ -16,7 +16,7 @@ categories = ["embedded", "config", "data-structures", "parsing"]

[dependencies]
serde = { version = "1.0.120", default-features = false }
miniconf_derive = { path = "../miniconf_derive", version = "0.17.2", optional = true }
miniconf_derive = { path = "../miniconf_derive", version = "0.18.0", optional = true }
itoa = "1.0.4"
serde-json-core = { version = "0.6.0", optional = true }
postcard = { version = "1.0.8", optional = true }
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.17.2"
version = "0.18.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.17.0"
version = "0.18.0"
authors = ["James Irwin <[email protected]>", "Ryan Summers <[email protected]>", "Robert Jördens <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -12,7 +12,7 @@ categories = ["no-std", "config", "rust-patterns", "parsing"]
[lib]

[dependencies]
miniconf = { version = "0.17.0", features = ["json-core"], default-features = false, path = "../miniconf" }
miniconf = { version = "0.18.0", features = ["json-core"], default-features = false, path = "../miniconf" }
minimq = "0.9.0"
smlang = "0.8"
embedded-io = "0.6"
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 @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "miniconf-mqtt"
# Note: keep this in sync with Cargo.toml
version = "0.17.2"
version = "0.18.0"
description = "Utilities for configuring Miniconf-configurable devices"
authors = [
{ name = "Ryan Summers", email = "[email protected]" },
Expand Down

0 comments on commit 9a8323b

Please sign in to comment.