diff --git a/CHANGELOG.md b/CHANGELOG.md
index d50bb17..55e186a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,8 +5,43 @@ 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).
+## v0.3.2 (2023-04-30)
+
+### Chore
+
+ - derive config from cli expressions
+ Drive onionpipe builder entirely from config, deriving a dynamic config
+ from the CLI if a file is not specified.
+
+### New Features
+
+ - secret key store for service and client auth keys
+
+### Commit Statistics
+
+
+
+ - 2 commits contributed to the release over the course of 42 calendar days.
+ - 62 days passed between releases.
+ - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
+ - 2 unique issues were worked on: [#8](https://github.com/cmars/onionpipe-rs/issues/8), [#9](https://github.com/cmars/onionpipe-rs/issues/9)
+
+### Commit Details
+
+
+
+view details
+
+ * **[#8](https://github.com/cmars/onionpipe-rs/issues/8)**
+ - derive config from cli expressions ([`401c60c`](https://github.com/cmars/onionpipe-rs/commit/401c60cf746b727c35e60bdeb29e280f0449ff8e))
+ * **[#9](https://github.com/cmars/onionpipe-rs/issues/9)**
+ - secret key store for service and client auth keys ([`70a15ca`](https://github.com/cmars/onionpipe-rs/commit/70a15cabbbd8fdbdab8e61da9c36fffaf0d7cead))
+
+
## v0.3.1 (2023-02-26)
+
+
### Chore
- README updates
@@ -16,7 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- - 1 commit contributed to the release.
+ - 2 commits contributed to the release.
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
- 1 unique issue was worked on: [#6](https://github.com/cmars/onionpipe-rs/issues/6)
@@ -28,6 +63,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* **[#6](https://github.com/cmars/onionpipe-rs/issues/6)**
- README updates ([`fe374c3`](https://github.com/cmars/onionpipe-rs/commit/fe374c36842ce95366842e3b141a25147b94fd07))
+ * **Uncategorized**
+ - Release onionpipe v0.3.1 ([`446a55c`](https://github.com/cmars/onionpipe-rs/commit/446a55c57f9e26322fa2d35abd3cad5c7a998e0d))
## v0.3.0 (2023-02-25)
diff --git a/Cargo.lock b/Cargo.lock
index 1b34a8e..e872abe 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -645,7 +645,7 @@ checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
[[package]]
name = "onionpipe"
-version = "0.3.1"
+version = "0.3.2"
dependencies = [
"base64 0.20.0",
"clap",
diff --git a/Cargo.toml b/Cargo.toml
index f4706e5..51e0f97 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "onionpipe"
-version = "0.3.1"
+version = "0.3.2"
edition = "2021"
authors = ["Casey Marshall "]
license = "MIT OR Apache-2.0"