Skip to content

Commit

Permalink
chore(confik): prepare release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Oct 20, 2023
1 parent dba4d55 commit a212097
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
15 changes: 12 additions & 3 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
comment: false

coverage:
status:
project:
default:
threshold: 100% # make CI green
patch:
default:
threshold: 100% # make CI green

ignore:
- "**/tests"
- "**/benches"
- "**/examples"
- '**/tests'
- '**/benches'
- '**/examples'
4 changes: 2 additions & 2 deletions confik-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "confik-macros"
version = "0.10.0"
version = "0.11.0"
authors = ["Rob Ede <[email protected]>"]
description = "Macros for confik"
keywords = ["parser", "serde", "utility", "config"]
Expand All @@ -21,7 +21,7 @@ syn = { version = "2", features = ["extra-traits"] }

[dev-dependencies]
assert_matches = "1.5"
confik = "0.10"
confik = "0.11"
rustversion = "1"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
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.0

- Add support for `#[confik(try_from = "<ty>")]` field attribute, following the rules of `from` but using `TryFrom`. This will not break existing code unless it contains manual implementations of `Configuration`.
- Add `FailedTryInto` type.
- Add `Error::TryInto` variant.
Expand Down
2 changes: 1 addition & 1 deletion confik/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ uuid = ["dep:uuid"]
secrecy = ["dep:secrecy"]

[dependencies]
confik-macros = "=0.10.0"
confik-macros = "=0.11.0"

cfg-if = "1"
serde = { version = "1", default-features = false, features = ["std", "derive"] }
Expand Down
4 changes: 2 additions & 2 deletions confik/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<!-- 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.10.2)](https://docs.rs/confik/0.10.2)
[![Documentation](https://docs.rs/confik/badge.svg?version=0.11.0)](https://docs.rs/confik/0.11.0)
![Version](https://img.shields.io/badge/rustc-1.65+-ab6000.svg)
![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)
[![dependency status](https://deps.rs/crate/confik/0.10.2/status.svg)](https://deps.rs/crate/confik/0.10.2)
[![dependency status](https://deps.rs/crate/confik/0.11.0/status.svg)](https://deps.rs/crate/confik/0.11.0)
[![Download](https://img.shields.io/crates/d/confik.svg)](https://crates.io/crates/confik)

<!-- prettier-ignore-end -->
Expand Down

0 comments on commit a212097

Please sign in to comment.