From f7bdfb691a284edc8a8cd4b18a3a1e3f0b60d7a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Wed, 16 Oct 2024 16:20:50 +0200 Subject: [PATCH] v0.16.1 chores --- CHANGELOG.md | 6 ++++++ miniconf/Cargo.toml | 4 ++-- miniconf_derive/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f7ad039..3b8d8528 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ 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.16.1](https://github.com/quartiq/miniconf/compare/v0.16.0...v0.16.1) - 2024-10-15 + +### Added + +* `impl Key for &T where T: Key` + ## [0.16.0](https://github.com/quartiq/miniconf/compare/v0.15.0...v0.16.0) - 2024-10-08 ### Changed diff --git a/miniconf/Cargo.toml b/miniconf/Cargo.toml index f16b44b9..229de70c 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.16.0" +version = "0.16.1" authors = [ "James Irwin ", "Ryan Summers ", @@ -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.16.0", optional = true } +miniconf_derive = { path = "../miniconf_derive", version = "0.16.1", 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 569b5513..6c963550 100644 --- a/miniconf_derive/Cargo.toml +++ b/miniconf_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miniconf_derive" -version = "0.16.0" +version = "0.16.1" authors = ["James Irwin ", "Ryan Summers ", "Robert Jördens "] edition = "2021" license = "MIT"