From 7f5475724c57f6407d8ca882acfb3dbd7e232e06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Thu, 26 Sep 2024 11:36:00 +0200 Subject: [PATCH] release 0.14 prep --- CHANGELOG.md | 3 ++- miniconf/Cargo.toml | 4 ++-- miniconf_derive/Cargo.toml | 2 +- miniconf_mqtt/Cargo.toml | 4 ++-- py/miniconf-mqtt/pyproject.toml | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 988c7dde..32babdb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,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). -## [Unreleased](https://github.com/quartiq/miniconf/compare/v0.13.0...HEAD) - DATE +## [0.14.0](https://github.com/quartiq/miniconf/compare/v0.13.0...v0.14.0) - 2024-09-26 ### Added + * Derive support for enums with newtype/unit/skipped variants ### Removed diff --git a/miniconf/Cargo.toml b/miniconf/Cargo.toml index ca6effb0..bbf24d3d 100644 --- a/miniconf/Cargo.toml +++ b/miniconf/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "miniconf" # Sync all crate versions and the py client -version = "0.13.0" +version = "0.14.0" authors = ["James Irwin ", "Ryan Summers ", "Robert Jördens "] edition = "2021" license = "MIT" @@ -12,7 +12,7 @@ categories = ["embedded", "config", "data-structures", "parsing"] [dependencies] serde = { version = "1.0.120", default-features = false } -miniconf_derive = { path = "../miniconf_derive", version = "0.13", optional = true } +miniconf_derive = { path = "../miniconf_derive", version = "0.14", optional = true } itoa = "1.0.4" serde-json-core = { version = "0.6.0", optional = true } postcard = { version = "1.0.8", optional = true } diff --git a/miniconf_derive/Cargo.toml b/miniconf_derive/Cargo.toml index 3fb611da..ee76de23 100644 --- a/miniconf_derive/Cargo.toml +++ b/miniconf_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miniconf_derive" -version = "0.13.0" +version = "0.14.0" authors = ["James Irwin ", "Ryan Summers ", "Robert Jördens "] edition = "2021" license = "MIT" diff --git a/miniconf_mqtt/Cargo.toml b/miniconf_mqtt/Cargo.toml index 0d85452f..68ee2753 100644 --- a/miniconf_mqtt/Cargo.toml +++ b/miniconf_mqtt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miniconf_mqtt" -version = "0.13.1" +version = "0.14.0" authors = ["James Irwin ", "Ryan Summers ", "Robert Jördens "] edition = "2021" license = "MIT" @@ -12,7 +12,7 @@ categories = ["no-std", "config", "rust-patterns", "parsing"] [lib] [dependencies] -miniconf = { version = "0.13", features = ["json-core"], default-features = false, path = "../miniconf" } +miniconf = { version = "0.14", features = ["json-core"], default-features = false, path = "../miniconf" } minimq = "0.9.0" smlang = "0.8" embedded-io = "0.6" diff --git a/py/miniconf-mqtt/pyproject.toml b/py/miniconf-mqtt/pyproject.toml index 890b162a..2984368e 100644 --- a/py/miniconf-mqtt/pyproject.toml +++ b/py/miniconf-mqtt/pyproject.toml @@ -8,7 +8,7 @@ text = "MIT" [project] name = "miniconf-mqtt" # Note: keep this in sync with Cargo.toml -version = "0.13.0" +version = "0.14.0" description = "Utilities for configuring Miniconf-configurable devices" authors = [ { name = "Ryan Summers", email = "ryan.summers@vertigo-designs.com" },