diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7310cc2..f4aa32a 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.2.2 (2023-02-20)
+
+### Chore
+
+ - add gh to nix shell
+ gh needed for Github releases
+
+### New Features
+
+ - forward expression parser
+ Parse onionpipe forwarding expressions.
+
+### Commit Statistics
+
+
+
+ - 2 commits contributed to the release.
+ - 7 days passed between releases.
+ - 2 commits were understood as [conventional](https://www.conventionalcommits.org).
+ - 1 unique issue was worked on: [#4](https://github.com/cmars/onionpipe-rs/issues/4)
+
+### Commit Details
+
+
+
+view details
+
+ * **[#4](https://github.com/cmars/onionpipe-rs/issues/4)**
+ - forward expression parser ([`28c832e`](https://github.com/cmars/onionpipe-rs/commit/28c832efe646a3c51d912ce9d2de487491b8065d))
+ * **Uncategorized**
+ - add gh to nix shell ([`959c781`](https://github.com/cmars/onionpipe-rs/commit/959c781bcca5a17d23edc388734f3ec232dfc3aa))
+
+
## v0.2.1 (2023-02-12)
+
+
### Chore
- update README
@@ -15,7 +50,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- - 2 commits contributed to the release.
+ - 3 commits contributed to the release.
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
@@ -26,6 +61,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details
* **Uncategorized**
+ - Release onionpipe v0.2.1 ([`a46e82d`](https://github.com/cmars/onionpipe-rs/commit/a46e82df1ee9ce654dc64d7f00e335aaabbd79aa))
- Release onionpipe v0.2.0 ([`6c505c9`](https://github.com/cmars/onionpipe-rs/commit/6c505c942cc9890a417f7775caff6a156ba19142))
- update README ([`88be3cb`](https://github.com/cmars/onionpipe-rs/commit/88be3cb690686fdb5c1d1d76f6b5e06e1431e3d7))
diff --git a/Cargo.lock b/Cargo.lock
index 04a91d2..f827935 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -545,7 +545,7 @@ checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
[[package]]
name = "onionpipe"
-version = "0.2.1"
+version = "0.2.2"
dependencies = [
"base64 0.20.0",
"clap",
diff --git a/Cargo.toml b/Cargo.toml
index 01019f8..62a217a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "onionpipe"
-version = "0.2.1"
+version = "0.2.2"
edition = "2021"
authors = ["Casey Marshall "]
license = "MIT OR Apache-2.0"