diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json
index 4a932202..ee1033b3 100644
--- a/.github/.release-please-manifest.json
+++ b/.github/.release-please-manifest.json
@@ -1 +1 @@
-{"functions-framework-api":"2.0.0","invoker":"1.4.3","function-maven-plugin":"0.11.2"}
+{"functions-framework-api":"2.0.0","invoker":"2.0.0","function-maven-plugin":"0.11.2"}
diff --git a/invoker/CHANGELOG.md b/invoker/CHANGELOG.md
index 9502293b..c732e50c 100644
--- a/invoker/CHANGELOG.md
+++ b/invoker/CHANGELOG.md
@@ -1,5 +1,24 @@
# Changelog
+## [2.0.0](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.4.3...java-function-invoker-v2.0.0) (2025-11-06)
+
+
+### ⚠ BREAKING CHANGES
+
+* update functions-framework-api dependency to 2.0.0 ([#365](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/365))
+* **implementation:** use Java 17 or above, as required by Eclipse Jetty-12.
+* remove java11 support and expand java21 test coverage ([#356](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/356))
+
+### Features
+
+* remove java11 support and expand java21 test coverage ([#356](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/356)) ([c1f27d2](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/c1f27d289e3b9da2ec936fb4d2197f42a2eaa983))
+
+
+### Miscellaneous Chores
+
+* **implementation:** use Jetty-12.1 core without servlets ([#333](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/333)) ([e23f98f](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/e23f98f2dc7cbcdbd036a46423c99f82bddd80bc))
+* update functions-framework-api dependency to 2.0.0 ([#365](https://github.com/GoogleCloudPlatform/functions-framework-java/issues/365)) ([f351c1a](https://github.com/GoogleCloudPlatform/functions-framework-java/commit/f351c1ade94a08bc4116b40e2d343e1b5d9a6db6))
+
## [1.4.3](https://github.com/GoogleCloudPlatform/functions-framework-java/compare/java-function-invoker-v1.4.2...java-function-invoker-v1.4.3) (2025-10-20)
diff --git a/invoker/conformance/pom.xml b/invoker/conformance/pom.xml
index e5f39c82..46518398 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.4.4-SNAPSHOT
+ 2.0.0
com.google.cloud.functions.invoker
conformance
- 1.4.4-SNAPSHOT
+ 2.0.0
GCF Confromance Tests
diff --git a/invoker/core/pom.xml b/invoker/core/pom.xml
index 7fa923a8..d9ff5070 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.4.4-SNAPSHOT
+ 2.0.0
com.google.cloud.functions.invoker
java-function-invoker
- 1.4.4-SNAPSHOT
+ 2.0.0
GCF Java Invoker
Application that invokes a GCF Java function. This application is a
@@ -112,7 +112,7 @@
com.google.cloud.functions.invoker
java-function-invoker-testfunction
- 1.4.4-SNAPSHOT
+ 2.0.0
test-jar
test
diff --git a/invoker/pom.xml b/invoker/pom.xml
index b449fa4c..ea84bbc7 100644
--- a/invoker/pom.xml
+++ b/invoker/pom.xml
@@ -8,7 +8,7 @@
com.google.cloud.functions.invoker
java-function-invoker-parent
- 1.4.4-SNAPSHOT
+ 2.0.0
pom
GCF Java Invoker Parent
diff --git a/invoker/testfunction/pom.xml b/invoker/testfunction/pom.xml
index a0613c87..dac28bf7 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.4.4-SNAPSHOT
+ 2.0.0
com.google.cloud.functions.invoker
java-function-invoker-testfunction
- 1.4.4-SNAPSHOT
+ 2.0.0
Example GCF Function Jar
An example of a GCF function packaged into a jar. We use this in tests.