diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json
index c2ee81e0..c69f9d78 100644
--- a/.github/.release-please-manifest.json
+++ b/.github/.release-please-manifest.json
@@ -1 +1 @@
-{"functions-framework-api":"1.1.0","invoker":"1.3.1","function-maven-plugin":"0.11.0"}
+{"functions-framework-api":"1.1.0","invoker":"1.3.2","function-maven-plugin":"0.11.0"}
diff --git a/invoker/CHANGELOG.md b/invoker/CHANGELOG.md
index 2800c114..1ebf793d 100644
--- a/invoker/CHANGELOG.md
+++ b/invoker/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## [1.3.2](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.3.1...java-function-invoker-v1.3.2) (2024-04-02)
+
+
+### Bug Fixes
+
+* avoid executing function when /favicon.ico or /robots.txt is called ([#226](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/226)) ([fca8676](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/fca867667db593699193da01b69a4cca7ca48fc8))
+* set Thread Context ClassLoader correctly when invoking handler constructor ([#239](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/239)) ([9f7155b](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/9f7155b77574ec980ecf9e6dffbd2ee0398db8a7))
+
## [1.3.1](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.3.0...java-function-invoker-v1.3.1) (2023-09-13)
diff --git a/invoker/conformance/pom.xml b/invoker/conformance/pom.xml
index 56dfcf68..4735dad2 100644
--- a/invoker/conformance/pom.xml
+++ b/invoker/conformance/pom.xml
@@ -4,12 +4,12 @@
java-function-invoker-parent
com.google.cloud.functions.invoker
- 1.3.2-SNAPSHOT
+ 1.3.2
com.google.cloud.functions.invoker
conformance
- 1.3.2-SNAPSHOT
+ 1.3.2
GCF Confromance Tests
diff --git a/invoker/core/pom.xml b/invoker/core/pom.xml
index dbf10306..2c5840a3 100644
--- a/invoker/core/pom.xml
+++ b/invoker/core/pom.xml
@@ -4,12 +4,12 @@
com.google.cloud.functions.invoker
java-function-invoker-parent
- 1.3.2-SNAPSHOT
+ 1.3.2
com.google.cloud.functions.invoker
java-function-invoker
- 1.3.2-SNAPSHOT
+ 1.3.2
GCF Java Invoker
Application that invokes a GCF Java function. This application is a
@@ -115,7 +115,7 @@
com.google.cloud.functions.invoker
java-function-invoker-testfunction
- 1.3.2-SNAPSHOT
+ 1.3.2
test-jar
test
diff --git a/invoker/pom.xml b/invoker/pom.xml
index b9b94e60..a8b981a7 100644
--- a/invoker/pom.xml
+++ b/invoker/pom.xml
@@ -8,7 +8,7 @@
com.google.cloud.functions.invoker
java-function-invoker-parent
- 1.3.2-SNAPSHOT
+ 1.3.2
pom
GCF Java Invoker Parent
diff --git a/invoker/testfunction/pom.xml b/invoker/testfunction/pom.xml
index a19349ce..f050b9ba 100644
--- a/invoker/testfunction/pom.xml
+++ b/invoker/testfunction/pom.xml
@@ -4,12 +4,12 @@
com.google.cloud.functions.invoker
java-function-invoker-parent
- 1.3.2-SNAPSHOT
+ 1.3.2
com.google.cloud.functions.invoker
java-function-invoker-testfunction
- 1.3.2-SNAPSHOT
+ 1.3.2
Example GCF Function Jar
An example of a GCF function packaged into a jar. We use this in tests.