From d2d2ab8ea52cb01288f1504c1b5f71c0bec67abb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 6 Sep 2026 18:13:20 +0000 Subject: [PATCH] chore(main): release 0.3.1 --- .release-please-manifest.json | 2 +- ADOPTION.md | 4 ++-- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- 6 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0ee8c01..816df2d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.0" + ".": "0.3.1" } diff --git a/ADOPTION.md b/ADOPTION.md index acbce49..62ad8d2 100644 --- a/ADOPTION.md +++ b/ADOPTION.md @@ -31,7 +31,7 @@ In `Cargo.toml`: ```toml [dependencies] -koinon = { git = "https://github.com/forkwright/koinon", tag = "v0.3.0" } +koinon = { git = "https://github.com/forkwright/koinon", tag = "v0.3.1" } ``` @@ -50,7 +50,7 @@ Crates that only need one leaf can trim the dependency tree: ```toml [dependencies] -koinon = { git = "https://github.com/forkwright/koinon", tag = "v0.3.0", default-features = false, features = ["config"] } +koinon = { git = "https://github.com/forkwright/koinon", tag = "v0.3.1", default-features = false, features = ["config"] } ``` diff --git a/CHANGELOG.md b/CHANGELOG.md index 108e918..5b3ec30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to koinon are documented here. +## [0.3.1](https://github.com/forkwright/koinon/compare/v0.3.0...v0.3.1) (2026-09-06) + + +### Documentation + +* **adoption:** record xenodocheion's koinon telemetry adoption ([#64](https://github.com/forkwright/koinon/issues/64)) ([e874272](https://github.com/forkwright/koinon/commit/e8742728af54bf6ee06de7fae18e7dbc29c19e60)) + ## [0.3.0](https://github.com/forkwright/koinon/compare/v0.2.1...v0.3.0) (2026-09-06) diff --git a/Cargo.lock b/Cargo.lock index 23b3353..b8978a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -256,7 +256,7 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" [[package]] name = "koinon" -version = "0.3.0" +version = "0.3.1" dependencies = [ "clap", "figment", diff --git a/Cargo.toml b/Cargo.toml index 5ee5456..da07e7b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "koinon" description = "κοινόν — typed application-bootstrap for forkwright Rust crates: integrated CLI, config, and telemetry init" -version = "0.3.0" +version = "0.3.1" edition = "2024" rust-version = "1.85" license = "LicenseRef-PolyForm-Noncommercial-1.0.0" diff --git a/README.md b/README.md index 4f2923b..638d621 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ default; `error` is always available. Trim the dependency tree with ```toml [dependencies] -koinon = { git = "https://github.com/forkwright/koinon", tag = "v0.3.0", default-features = false, features = ["config"] } +koinon = { git = "https://github.com/forkwright/koinon", tag = "v0.3.1", default-features = false, features = ["config"] } ``` @@ -49,7 +49,7 @@ koinon = { git = "https://github.com/forkwright/koinon", tag = "v0.3.0", default ```toml [dependencies] -koinon = { git = "https://github.com/forkwright/koinon", tag = "v0.3.0" } +koinon = { git = "https://github.com/forkwright/koinon", tag = "v0.3.1" } ```