diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json
index ee718aed..d17a5bf0 100644
--- a/.github/.release-please-manifest.json
+++ b/.github/.release-please-manifest.json
@@ -1 +1 @@
-{"functions-framework-api":"1.1.4","invoker":"1.3.3","function-maven-plugin":"0.11.1"}
+{"functions-framework-api":"1.1.4","invoker":"1.4.0","function-maven-plugin":"0.11.1"}
diff --git a/invoker/CHANGELOG.md b/invoker/CHANGELOG.md
index 2ac0970a..628267db 100644
--- a/invoker/CHANGELOG.md
+++ b/invoker/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## [1.4.0](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.3.3...java-function-invoker-v1.4.0) (2025-02-12)
+
+
+### Features
+
+* Add execution id logging to uniquely identify request logs ([#319](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/319)) ([5ef5317](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/5ef53174b6cdbc644336121bc19bab6c4b90892d))
+
## [1.3.3](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.3.2...java-function-invoker-v1.3.3) (2024-11-27)
diff --git a/invoker/conformance/pom.xml b/invoker/conformance/pom.xml
index 2f2b8aae..929b9408 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.4-SNAPSHOT
+ 1.4.0
com.google.cloud.functions.invoker
conformance
- 1.3.4-SNAPSHOT
+ 1.4.0
GCF Confromance Tests
diff --git a/invoker/core/pom.xml b/invoker/core/pom.xml
index a63cff27..35ec377e 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.4-SNAPSHOT
+ 1.4.0
com.google.cloud.functions.invoker
java-function-invoker
- 1.3.4-SNAPSHOT
+ 1.4.0
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.4-SNAPSHOT
+ 1.4.0
test-jar
test
diff --git a/invoker/pom.xml b/invoker/pom.xml
index 705aab2d..7c5c4484 100644
--- a/invoker/pom.xml
+++ b/invoker/pom.xml
@@ -8,7 +8,7 @@
com.google.cloud.functions.invoker
java-function-invoker-parent
- 1.3.4-SNAPSHOT
+ 1.4.0
pom
GCF Java Invoker Parent
diff --git a/invoker/testfunction/pom.xml b/invoker/testfunction/pom.xml
index 27e6e595..e8642676 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.4-SNAPSHOT
+ 1.4.0
com.google.cloud.functions.invoker
java-function-invoker-testfunction
- 1.3.4-SNAPSHOT
+ 1.4.0
Example GCF Function Jar
An example of a GCF function packaged into a jar. We use this in tests.