From a62b9d0ce9bf637aadc0dca11638a913e002e1dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Tue, 12 Nov 2024 18:04:41 +0100 Subject: [PATCH 1/2] release v0.17.1 --- CHANGELOG.md | 2 +- miniconf/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15eeec1b..82552218 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.17.0...HEAD) - DATE +## [0.17.1](https://github.com/quartiq/miniconf/compare/v0.17.0...v0.17.1) - 2024-11-12 ### Added diff --git a/miniconf/Cargo.toml b/miniconf/Cargo.toml index d66e081c..66c5754e 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.17.0" +version = "0.17.1" authors = [ "James Irwin ", "Ryan Summers ", From 652264a24c63b3eef05dc471ba4516e186694a94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Tue, 12 Nov 2024 18:06:11 +0100 Subject: [PATCH 2/2] docs for no features --- miniconf/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/miniconf/src/lib.rs b/miniconf/src/lib.rs index b7a5b26c..0b4d27d0 100644 --- a/miniconf/src/lib.rs +++ b/miniconf/src/lib.rs @@ -1,5 +1,6 @@ #![cfg_attr(not(any(test, feature = "std")), no_std)] #![cfg_attr(all(feature = "derive", feature = "json-core"), doc = include_str!("../README.md"))] +#![cfg_attr(not(all(feature = "derive", feature = "json-core")), doc = "Miniconf")] #![deny(rust_2018_compatibility)] #![deny(rust_2018_idioms)] #![warn(missing_docs)]