Skip to content

Commit

Permalink
chore(confik): prepare release 0.11.7
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Mar 23, 2024
1 parent a1a68ab commit 79f6dc9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"cSpell.words": [
"bigdecimal",
"bytesize",
"chrono",
"codecov",
Expand Down
2 changes: 2 additions & 0 deletions confik/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.11.7

- Implement `Configuration` for [`bigdecimal::BigDecimal`](https://docs.rs/bigdecimal/0.4/bigdecimal/struct.BigDecimal.html).

## 0.11.6
Expand Down
8 changes: 4 additions & 4 deletions confik/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "confik"
version = "0.11.6"
version = "0.11.7"
description = "A library for reading application configuration split across multiple sources"
authors = ["Rob Ede <robjtede@icloud.com>"]
keywords = ["parser", "serde", "utility", "config"]
Expand Down Expand Up @@ -29,16 +29,16 @@ json = ["dep:serde_json"]
toml = ["dep:toml"]

# Destination types
bigdecimal = ["dep:bigdecimal"]
bytesize = ["dep:bytesize"]
common = []
camino = ["dep:camino"]
chrono = ["dep:chrono"]
common = []
ipnetwork = ["dep:ipnetwork"]
rust_decimal = ["dep:rust_decimal"]
secrecy = ["dep:secrecy"]
url = ["dep:url"]
uuid = ["dep:uuid"]
secrecy = ["dep:secrecy"]
bigdecimal = ["dep:bigdecimal"]

[dependencies]
confik-macros = "=0.11.1"
Expand Down
4 changes: 2 additions & 2 deletions confik/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<!-- prettier-ignore-start -->

[![crates.io](https://img.shields.io/crates/v/confik?label=latest)](https://crates.io/crates/confik)
[![Documentation](https://docs.rs/confik/badge.svg?version=0.11.6)](https://docs.rs/confik/0.11.6)
[![dependency status](https://deps.rs/crate/confik/0.11.6/status.svg)](https://deps.rs/crate/confik/0.11.6)
[![Documentation](https://docs.rs/confik/badge.svg?version=0.11.7)](https://docs.rs/confik/0.11.7)
[![dependency status](https://deps.rs/crate/confik/0.11.7/status.svg)](https://deps.rs/crate/confik/0.11.7)
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/confik.svg)
<br />
[![CI](https://github.com/x52dev/confik/actions/workflows/ci.yml/badge.svg)](https://github.com/x52dev/confik/actions/workflows/ci.yml)
Expand Down
5 changes: 2 additions & 3 deletions confik/src/lib.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,16 +181,15 @@ Defaults are specified on a per-field basis.

This crate provides implementations of [`Configuration`] for a number of `std` types and the following third-party crates. Implementations for third-party crates are feature gated.

- `bigdecimal`: v0.4
- `bytesize`: v1
- `camino`: v1
- `chrono`: v0.4
- `ipnetwork`: v0.20
- `rust_decimal`: v1
- `secrecy`: v0.8 (Note that `#[config(secret)]` is not needed, although it is harmless, for these types as they are always treated as secrets.)
- `url`: v1
- `uuid`: v1
- `secrecy`: v0.8
- Note: `#[config(secret)]` is not needed (although it is harmless) for `secrecy`'s types as they are always treated as secrets.
- `bigdecimal`: v0.4

If there's another foreign type used in your config, then you will not be able to implement [`Configuration`] for it. Instead any type that implements [`Into`] or [`TryInto`] can be used.

Expand Down

0 comments on commit 79f6dc9

Please # to comment.