Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename derive_miniconf -> miniconf_derive, update categories, and release 0.6.2 #118

Merged
merged 3 commits into from
Nov 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,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).

## [0.6.2](https://github.com/quartiq/miniconf/compare/v0.6.1...v0.6.2) - 2022-11-09

* Renaming and reorganization of the the derive macro

## [0.6.1](https://github.com/quartiq/miniconf/compare/v0.6.0...v0.6.1) - 2022-11-04

* Documentation updates.
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "miniconf"

# Don't forget to change `derive_miniconf`'s version as well.
version = "0.6.1"
# Don't forget to change `miniconf_derive`'s version as well.
version = "0.6.2"

authors = ["James Irwin <irwineffect@gmail.com>", "Ryan Summers <ryan.summers@vertigo-designs.com", "Robert Jördens <rj@quartiq.de>"]
edition = "2018"
license = "MIT"
description = "Access serde namespaces by path"
description = "Inspect serde namespaces by path"
repository = "https://github.com/quartiq/miniconf"
keywords = ["settings", "serde", "no_std", "json", "mqtt"]
categories = ["no-std", "config", "embedded", "parsing"]
categories = ["no-std", "config", "rust-patterns", "parsing"]

[dependencies]
derive_miniconf = { path = "derive_miniconf" , version = "0.6" }
miniconf_derive = { path = "miniconf_derive" , version = "0.6" }
serde-json-core = "0.5.0"
serde = { version = "1.0.120", features = ["derive"], default-features = false }
log = "0.4"
Expand Down
File renamed without changes.
11 changes: 5 additions & 6 deletions derive_miniconf/Cargo.toml → miniconf_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
[package]
name = "derive_miniconf"
version = "0.6.1"
name = "miniconf_derive"
version = "0.6.2"
authors = ["James Irwin <irwineffect@gmail.com>", "Ryan Summers <ryan.summers@vertigo-designs.com", "Robert Jördens <rj@quartiq.de>"]
edition = "2018"
license = "MIT"
description = "Derive utilities for Miniconf run-time settings configuration"
description = "Inspect serde namespaces by path (Miniconf derive macro)"
repository = "https://github.com/quartiq/miniconf"

keywords = ["settings", "embedded", "no_std", "configuration", "mqtt"]
categories = ["no-std", "config", "embedded", "parsing"]
keywords = ["settings", "serde", "no_std", "json", "mqtt"]
categories = ["no-std", "config", "rust-patterns", "parsing"]

[lib]
proc-macro = true
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ mod iter;
mod option;

pub use array::Array;
pub use derive_miniconf::Miniconf;
pub use iter::MiniconfIter;
pub use miniconf_derive::Miniconf;
pub use option::Option;

#[cfg(feature = "mqtt-client")]
Expand Down