[release] Update version to 2.1.0
diff --git a/README.md b/README.md
index ae55735..4d21071 100755
--- a/README.md
+++ b/README.md
@@ -127,7 +127,7 @@
 mvn archetype:generate \
   -DarchetypeGroupId=org.apache.flink \
   -DarchetypeArtifactId=statefun-quickstart \
-  -DarchetypeVersion=2.1-SNAPSHOT
+  -DarchetypeVersion=2.1.0
 ```
 
 This allows you to name your newly created project. It will interactively ask you for the `GroupId`,
@@ -204,7 +204,7 @@
 <dependency>
     <groupId>org.apache.flink</groupId>
     <artifactId>statefun-flink-distribution</artifactId>
-    <version>2.1-SNAPSHOT</version>
+    <version>2.1.0</version>
 </dependency>
 ```
 
diff --git a/pom.xml b/pom.xml
index c25c9cf..d7975aa 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@
     <artifactId>statefun-parent</artifactId>
     <groupId>org.apache.flink</groupId>
     <name>statefun-parent</name>
-    <version>2.1-SNAPSHOT</version>
+    <version>2.1.0</version>
     <packaging>pom</packaging>
 
     <url>http://flink.apache.org</url>
diff --git a/statefun-e2e-tests/pom.xml b/statefun-e2e-tests/pom.xml
index ebb297e..5670086 100644
--- a/statefun-e2e-tests/pom.xml
+++ b/statefun-e2e-tests/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-parent</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/statefun-e2e-tests/statefun-e2e-tests-common/pom.xml b/statefun-e2e-tests/statefun-e2e-tests-common/pom.xml
index 3989414..bd70b95 100644
--- a/statefun-e2e-tests/statefun-e2e-tests-common/pom.xml
+++ b/statefun-e2e-tests/statefun-e2e-tests-common/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-e2e-tests</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/statefun-e2e-tests/statefun-exactly-once-e2e/pom.xml b/statefun-e2e-tests/statefun-exactly-once-e2e/pom.xml
index 0ea4d6a..62753e7 100644
--- a/statefun-e2e-tests/statefun-exactly-once-e2e/pom.xml
+++ b/statefun-e2e-tests/statefun-exactly-once-e2e/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-e2e-tests</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/statefun-e2e-tests/statefun-exactly-once-e2e/src/test/resources/Dockerfile b/statefun-e2e-tests/statefun-exactly-once-e2e/src/test/resources/Dockerfile
index 7b2cca6..0c15c6e 100644
--- a/statefun-e2e-tests/statefun-exactly-once-e2e/src/test/resources/Dockerfile
+++ b/statefun-e2e-tests/statefun-exactly-once-e2e/src/test/resources/Dockerfile
@@ -13,7 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-FROM flink-statefun:2.1-SNAPSHOT
+FROM flink-statefun:2.1.0
 
 RUN mkdir -p /opt/statefun/modules/statefun-exactly-once-e2e
 COPY statefun-exactly-once-e2e*.jar /opt/statefun/modules/statefun-exactly-once-e2e/
diff --git a/statefun-e2e-tests/statefun-remote-module-e2e/pom.xml b/statefun-e2e-tests/statefun-remote-module-e2e/pom.xml
index e904370..53685ab 100644
--- a/statefun-e2e-tests/statefun-remote-module-e2e/pom.xml
+++ b/statefun-e2e-tests/statefun-remote-module-e2e/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-e2e-tests</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/Dockerfile b/statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/Dockerfile
index e3f8b9d..b3e9c5d 100644
--- a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/Dockerfile
+++ b/statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/Dockerfile
@@ -13,7 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-FROM flink-statefun:2.1-SNAPSHOT
+FROM flink-statefun:2.1.0
 
 RUN mkdir -p /opt/statefun/modules/statefun-remote-module-e2e
 COPY remote-module/ /opt/statefun/modules/statefun-remote-module-e2e/
diff --git a/statefun-e2e-tests/statefun-sanity-e2e/pom.xml b/statefun-e2e-tests/statefun-sanity-e2e/pom.xml
index 5e0721c..f6416f5 100644
--- a/statefun-e2e-tests/statefun-sanity-e2e/pom.xml
+++ b/statefun-e2e-tests/statefun-sanity-e2e/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-e2e-tests</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/statefun-e2e-tests/statefun-sanity-e2e/src/test/resources/Dockerfile b/statefun-e2e-tests/statefun-sanity-e2e/src/test/resources/Dockerfile
index 23c6fd9..1fc9e4f 100644
--- a/statefun-e2e-tests/statefun-sanity-e2e/src/test/resources/Dockerfile
+++ b/statefun-e2e-tests/statefun-sanity-e2e/src/test/resources/Dockerfile
@@ -13,7 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-FROM flink-statefun:2.1-SNAPSHOT
+FROM flink-statefun:2.1.0
 
 RUN mkdir -p /opt/statefun/modules/statefun-sanity-e2e
 COPY statefun-sanity-e2e*.jar /opt/statefun/modules/statefun-sanity-e2e/
diff --git a/statefun-examples/pom.xml b/statefun-examples/pom.xml
index a9b9f8e..157b437 100644
--- a/statefun-examples/pom.xml
+++ b/statefun-examples/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <artifactId>statefun-parent</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
 
     <artifactId>statefun-examples</artifactId>
diff --git a/statefun-examples/statefun-async-example/pom.xml b/statefun-examples/statefun-async-example/pom.xml
index 8a1cfc4..848cb91 100644
--- a/statefun-examples/statefun-async-example/pom.xml
+++ b/statefun-examples/statefun-async-example/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-examples</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
diff --git a/statefun-examples/statefun-flink-harness-example/pom.xml b/statefun-examples/statefun-flink-harness-example/pom.xml
index c3eeb3a..9f1f46a 100644
--- a/statefun-examples/statefun-flink-harness-example/pom.xml
+++ b/statefun-examples/statefun-flink-harness-example/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-examples</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
diff --git a/statefun-examples/statefun-greeter-example/Dockerfile b/statefun-examples/statefun-greeter-example/Dockerfile
index 091409d..71edc62 100644
--- a/statefun-examples/statefun-greeter-example/Dockerfile
+++ b/statefun-examples/statefun-greeter-example/Dockerfile
@@ -13,7 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-FROM flink-statefun:2.1-SNAPSHOT
+FROM flink-statefun:2.1.0
 
 RUN mkdir -p /opt/statefun/modules/statefun-greeter-example
 COPY target/statefun-greeter-example*jar /opt/statefun/modules/statefun-greeter-example/
diff --git a/statefun-examples/statefun-greeter-example/pom.xml b/statefun-examples/statefun-greeter-example/pom.xml
index 4680ccb..69f866f 100644
--- a/statefun-examples/statefun-greeter-example/pom.xml
+++ b/statefun-examples/statefun-greeter-example/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-examples</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
diff --git a/statefun-examples/statefun-python-greeter-example/Dockerfile b/statefun-examples/statefun-python-greeter-example/Dockerfile
index f3f08e7..a76487f 100644
--- a/statefun-examples/statefun-python-greeter-example/Dockerfile
+++ b/statefun-examples/statefun-python-greeter-example/Dockerfile
@@ -14,7 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-FROM flink-statefun:2.1-SNAPSHOT
+FROM flink-statefun:2.1.0
 
 RUN mkdir -p /opt/statefun/modules/greeter
 ADD module.yaml /opt/statefun/modules/greeter
diff --git a/statefun-examples/statefun-python-k8s-example/Dockerfile.statefun b/statefun-examples/statefun-python-k8s-example/Dockerfile.statefun
index f3f08e7..a76487f 100644
--- a/statefun-examples/statefun-python-k8s-example/Dockerfile.statefun
+++ b/statefun-examples/statefun-python-k8s-example/Dockerfile.statefun
@@ -14,7 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-FROM flink-statefun:2.1-SNAPSHOT
+FROM flink-statefun:2.1.0
 
 RUN mkdir -p /opt/statefun/modules/greeter
 ADD module.yaml /opt/statefun/modules/greeter
diff --git a/statefun-examples/statefun-ridesharing-example/Dockerfile.functions b/statefun-examples/statefun-ridesharing-example/Dockerfile.functions
index 04297bb..1d5ef3f 100644
--- a/statefun-examples/statefun-ridesharing-example/Dockerfile.functions
+++ b/statefun-examples/statefun-ridesharing-example/Dockerfile.functions
@@ -13,7 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-FROM flink-statefun:2.1-SNAPSHOT
+FROM flink-statefun:2.1.0
 
 RUN mkdir -p /opt/statefun/modules/statefun-ridesharing-example
 COPY statefun-ridesharing-example-functions/target/statefun-ridesharing-example*jar /opt/statefun/modules/statefun-ridesharing-example/
diff --git a/statefun-examples/statefun-ridesharing-example/pom.xml b/statefun-examples/statefun-ridesharing-example/pom.xml
index ee0aa53..48654d8 100644
--- a/statefun-examples/statefun-ridesharing-example/pom.xml
+++ b/statefun-examples/statefun-ridesharing-example/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-examples</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
diff --git a/statefun-examples/statefun-ridesharing-example/statefun-ridesharing-example-functions/pom.xml b/statefun-examples/statefun-ridesharing-example/statefun-ridesharing-example-functions/pom.xml
index d50ef67..6074f6b 100644
--- a/statefun-examples/statefun-ridesharing-example/statefun-ridesharing-example-functions/pom.xml
+++ b/statefun-examples/statefun-ridesharing-example/statefun-ridesharing-example-functions/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-ridesharing-example</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/statefun-examples/statefun-ridesharing-example/statefun-ridesharing-example-simulator/pom.xml b/statefun-examples/statefun-ridesharing-example/statefun-ridesharing-example-simulator/pom.xml
index 379818f..17781c7 100644
--- a/statefun-examples/statefun-ridesharing-example/statefun-ridesharing-example-simulator/pom.xml
+++ b/statefun-examples/statefun-ridesharing-example/statefun-ridesharing-example-simulator/pom.xml
@@ -22,7 +22,7 @@
     <parent>
         <artifactId>statefun-ridesharing-example</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
diff --git a/statefun-examples/statefun-ridesharing-example/statefun-ridesharing-protocol/pom.xml b/statefun-examples/statefun-ridesharing-example/statefun-ridesharing-protocol/pom.xml
index 20ba563..5ba581f 100644
--- a/statefun-examples/statefun-ridesharing-example/statefun-ridesharing-protocol/pom.xml
+++ b/statefun-examples/statefun-ridesharing-example/statefun-ridesharing-protocol/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-ridesharing-example</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/statefun-examples/statefun-shopping-cart-example/Dockerfile b/statefun-examples/statefun-shopping-cart-example/Dockerfile
index d899837..1c98950 100644
--- a/statefun-examples/statefun-shopping-cart-example/Dockerfile
+++ b/statefun-examples/statefun-shopping-cart-example/Dockerfile
@@ -13,7 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-FROM flink-statefun:2.1-SNAPSHOT
+FROM flink-statefun:2.1.0
 
 RUN mkdir -p /opt/statefun/modules/statefun-shopping-cart-example
 COPY target/statefun-shopping-cart-example*jar /opt/statefun/modules/statefun-shopping-cart-example/
diff --git a/statefun-examples/statefun-shopping-cart-example/pom.xml b/statefun-examples/statefun-shopping-cart-example/pom.xml
index b4722b2..a31635d 100644
--- a/statefun-examples/statefun-shopping-cart-example/pom.xml
+++ b/statefun-examples/statefun-shopping-cart-example/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-examples</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
diff --git a/statefun-examples/statefun-state-processor-example/pom.xml b/statefun-examples/statefun-state-processor-example/pom.xml
index 84f93c5..dec60ee 100644
--- a/statefun-examples/statefun-state-processor-example/pom.xml
+++ b/statefun-examples/statefun-state-processor-example/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-examples</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
diff --git a/statefun-flink/pom.xml b/statefun-flink/pom.xml
index ecd22b7..8026668 100644
--- a/statefun-flink/pom.xml
+++ b/statefun-flink/pom.xml
@@ -22,7 +22,7 @@
     <parent>
         <artifactId>statefun-parent</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/statefun-flink/statefun-flink-common/pom.xml b/statefun-flink/statefun-flink-common/pom.xml
index e6f3a43..a08aa07 100644
--- a/statefun-flink/statefun-flink-common/pom.xml
+++ b/statefun-flink/statefun-flink-common/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>statefun-flink</artifactId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/statefun-flink/statefun-flink-core/pom.xml b/statefun-flink/statefun-flink-core/pom.xml
index d140f9b..8257972 100644
--- a/statefun-flink/statefun-flink-core/pom.xml
+++ b/statefun-flink/statefun-flink-core/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>statefun-flink</artifactId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/statefun-flink/statefun-flink-distribution/pom.xml b/statefun-flink/statefun-flink-distribution/pom.xml
index 3e0f5ff..8c7edb0 100644
--- a/statefun-flink/statefun-flink-distribution/pom.xml
+++ b/statefun-flink/statefun-flink-distribution/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>statefun-flink</artifactId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/statefun-flink/statefun-flink-harness/pom.xml b/statefun-flink/statefun-flink-harness/pom.xml
index 11b38bb..e58d836 100644
--- a/statefun-flink/statefun-flink-harness/pom.xml
+++ b/statefun-flink/statefun-flink-harness/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>statefun-flink</artifactId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/statefun-flink/statefun-flink-io-bundle/pom.xml b/statefun-flink/statefun-flink-io-bundle/pom.xml
index 8e3486c..d6fd7c9 100644
--- a/statefun-flink/statefun-flink-io-bundle/pom.xml
+++ b/statefun-flink/statefun-flink-io-bundle/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>statefun-flink</artifactId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/statefun-flink/statefun-flink-io/pom.xml b/statefun-flink/statefun-flink-io/pom.xml
index 263eaa1..1adbcd1 100644
--- a/statefun-flink/statefun-flink-io/pom.xml
+++ b/statefun-flink/statefun-flink-io/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>statefun-flink</artifactId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/statefun-flink/statefun-flink-launcher/pom.xml b/statefun-flink/statefun-flink-launcher/pom.xml
index 0b271e2..3278ae8 100644
--- a/statefun-flink/statefun-flink-launcher/pom.xml
+++ b/statefun-flink/statefun-flink-launcher/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.flink</groupId>
         <artifactId>statefun-flink</artifactId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/statefun-flink/statefun-flink-state-processor/pom.xml b/statefun-flink/statefun-flink-state-processor/pom.xml
index 086deaa..557ad79 100644
--- a/statefun-flink/statefun-flink-state-processor/pom.xml
+++ b/statefun-flink/statefun-flink-state-processor/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-flink</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/statefun-kafka-io/pom.xml b/statefun-kafka-io/pom.xml
index 32abd5f..b8411b2 100644
--- a/statefun-kafka-io/pom.xml
+++ b/statefun-kafka-io/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-parent</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
diff --git a/statefun-kinesis-io/pom.xml b/statefun-kinesis-io/pom.xml
index fad67b6..c51261a 100644
--- a/statefun-kinesis-io/pom.xml
+++ b/statefun-kinesis-io/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-parent</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
 
diff --git a/statefun-python-sdk/setup.py b/statefun-python-sdk/setup.py
index 937d189..6bdca22 100644
--- a/statefun-python-sdk/setup.py
+++ b/statefun-python-sdk/setup.py
@@ -27,7 +27,7 @@
 
 setup(
     name='apache-flink-statefun',
-    version='2.1-SNAPSHOT',
+    version='2.1.0',
     packages=["statefun"],
     url='https://github.com/apache/flink-statefun',
     license='https://www.apache.org/licenses/LICENSE-2.0',
diff --git a/statefun-quickstart/pom.xml b/statefun-quickstart/pom.xml
index ba580a0..19002b8 100644
--- a/statefun-quickstart/pom.xml
+++ b/statefun-quickstart/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-parent</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
         <relativePath>..</relativePath>
     </parent>
     <modelVersion>4.0.0</modelVersion>
diff --git a/statefun-sdk/pom.xml b/statefun-sdk/pom.xml
index c36903f..6e0a6b7 100644
--- a/statefun-sdk/pom.xml
+++ b/statefun-sdk/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-parent</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/statefun-testutil/pom.xml b/statefun-testutil/pom.xml
index d2fba95..9ef000d 100644
--- a/statefun-testutil/pom.xml
+++ b/statefun-testutil/pom.xml
@@ -21,7 +21,7 @@
     <parent>
         <artifactId>statefun-parent</artifactId>
         <groupId>org.apache.flink</groupId>
-        <version>2.1-SNAPSHOT</version>
+        <version>2.1.0</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
diff --git a/tools/docker/build-stateful-functions.sh b/tools/docker/build-stateful-functions.sh
index 08b3847..c570bca 100755
--- a/tools/docker/build-stateful-functions.sh
+++ b/tools/docker/build-stateful-functions.sh
@@ -21,7 +21,7 @@
 # Do not change the name of this variable;
 # it is referenced in the tools/releasing/update_branch_version.sh script
 #
-VERSION_TAG=2.1-SNAPSHOT
+VERSION_TAG=2.1.0
 
 #
 # setup the environment 
diff --git a/tools/k8s/Chart.yaml b/tools/k8s/Chart.yaml
index ebf1ffd..c65b3ed 100644
--- a/tools/k8s/Chart.yaml
+++ b/tools/k8s/Chart.yaml
@@ -17,5 +17,5 @@
 name: statefun-k8s
 description: A Helm chart for a Stateful function pplication deployed on Kubernetes
 type: application
-version: 2.1-SNAPSHOT
+version: 2.1.0
 appVersion: 1.16.0
\ No newline at end of file