diff --git a/CHANGELOG.md b/CHANGELOG.md
index bc8eedba75..d21313d69c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,6 +13,10 @@ However, the output of the application is designed for humans, not machines, and
 
 ## [Unreleased]
 
+## [0.3.2]
+
+- Patch release to test the automated release workflow.
+
 ## [0.3.1]
 
 - Updates some minor dependencies.
@@ -21,6 +25,7 @@ However, the output of the application is designed for humans, not machines, and
 ## [0.3.0]
 
 ### Changed
+
 - Skip running pre-push hooks for git-nomad operations. This allows pushing work-in-progress branches with lint or compile errors (if the repo has pre-push hooks that check that).
 
 ## [0.2.1]
@@ -32,14 +37,17 @@ However, the output of the application is designed for humans, not machines, and
 ## [0.2.0] - 2021-11-06
 
 ### Changed
+
 - The `--version` information now leverages `git describe` to properly capture the precise revision the binary was built from.
 
 ### Fixed
+
 - Clean up deleted branches from other hosts. See https://github.com/rraval/git-nomad/issues/1.
 
 ## [0.1.1] - 2021-05-30
 
 ### Added
+
 - Support for a `--version` flag that reports the crate version.
 
 ## [0.1.0] - 2021-05-30
@@ -47,6 +55,7 @@ However, the output of the application is designed for humans, not machines, and
 An initial release with a reasonable complete implementation.
 
 ### Added
+
 - `init` to configure user and host names to use
 - `ls` to display all nomad managed refs
 - `prune` to remove local and remote nomad managed refs
diff --git a/Cargo.lock b/Cargo.lock
index 38ad08e8ff..cbb738bd28 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -93,7 +93,7 @@ dependencies = [
 
 [[package]]
 name = "git-nomad"
-version = "0.3.1"
+version = "0.3.2"
 dependencies = [
  "anyhow",
  "clap",
diff --git a/Cargo.toml b/Cargo.toml
index fb6431303e..67fbcd1102 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "git-nomad"
-version = "0.3.1"
+version = "0.3.2"
 authors = ["Ronuk Raval <ronuk.raval@gmail.com>"]
 edition = "2018"
 description = "Synchronize work-in-progress git branches in a light weight fashion"