This is an automated email from the ASF dual-hosted git repository.
tzulitai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-statefun.git
The following commit(s) were added to refs/heads/master by this push:
new 3f30aad [release] Update version to 2.2-SNAPSHOT
3f30aad is described below
commit 3f30aad0e22f03715cc5083bd573ccdcd2b8a6b2
Author: Tzu-Li (Gordon) Tai <[email protected]>
AuthorDate: Thu May 28 19:45:56 2020 +0800
[release] Update version to 2.2-SNAPSHOT
---
README.md | 4 ++--
docs/_config.yml | 4 ++--
pom.xml | 2 +-
statefun-e2e-tests/pom.xml | 2 +-
statefun-e2e-tests/statefun-e2e-tests-common/pom.xml | 2 +-
statefun-e2e-tests/statefun-exactly-once-e2e/pom.xml | 2 +-
.../statefun-exactly-once-e2e/src/test/resources/Dockerfile | 2 +-
statefun-e2e-tests/statefun-remote-module-e2e/pom.xml | 2 +-
.../statefun-remote-module-e2e/src/test/resources/Dockerfile | 2 +-
statefun-e2e-tests/statefun-sanity-e2e/pom.xml | 2 +-
statefun-e2e-tests/statefun-sanity-e2e/src/test/resources/Dockerfile | 2 +-
statefun-examples/pom.xml | 2 +-
statefun-examples/statefun-async-example/pom.xml | 2 +-
statefun-examples/statefun-flink-harness-example/pom.xml | 2 +-
statefun-examples/statefun-greeter-example/Dockerfile | 2 +-
statefun-examples/statefun-greeter-example/pom.xml | 2 +-
statefun-examples/statefun-python-greeter-example/Dockerfile | 2 +-
statefun-examples/statefun-python-k8s-example/Dockerfile.statefun | 2 +-
statefun-examples/statefun-ridesharing-example/Dockerfile.functions | 2 +-
statefun-examples/statefun-ridesharing-example/pom.xml | 2 +-
.../statefun-ridesharing-example-functions/pom.xml | 2 +-
.../statefun-ridesharing-example-simulator/pom.xml | 2 +-
.../statefun-ridesharing-protocol/pom.xml | 2 +-
statefun-examples/statefun-shopping-cart-example/Dockerfile | 2 +-
statefun-examples/statefun-shopping-cart-example/pom.xml | 2 +-
statefun-examples/statefun-state-processor-example/pom.xml | 2 +-
statefun-flink/pom.xml | 2 +-
statefun-flink/statefun-flink-common/pom.xml | 2 +-
statefun-flink/statefun-flink-core/pom.xml | 2 +-
statefun-flink/statefun-flink-distribution/pom.xml | 2 +-
statefun-flink/statefun-flink-harness/pom.xml | 2 +-
statefun-flink/statefun-flink-io-bundle/pom.xml | 2 +-
statefun-flink/statefun-flink-io/pom.xml | 2 +-
statefun-flink/statefun-flink-launcher/pom.xml | 2 +-
statefun-flink/statefun-flink-state-processor/pom.xml | 2 +-
statefun-kafka-io/pom.xml | 2 +-
statefun-kinesis-io/pom.xml | 2 +-
statefun-python-sdk/setup.py | 2 +-
statefun-quickstart/pom.xml | 2 +-
statefun-sdk/pom.xml | 2 +-
statefun-testutil/pom.xml | 2 +-
tools/docker/build-stateful-functions.sh | 2 +-
tools/k8s/Chart.yaml | 2 +-
43 files changed, 45 insertions(+), 45 deletions(-)
diff --git a/README.md b/README.md
index ae55735..0a7cbd6 100755
--- a/README.md
+++ b/README.md
@@ -127,7 +127,7 @@ You can quickly get started building Stateful Functions
applications using the p
mvn archetype:generate \
-DarchetypeGroupId=org.apache.flink \
-DarchetypeArtifactId=statefun-quickstart \
- -DarchetypeVersion=2.1-SNAPSHOT
+ -DarchetypeVersion=2.2-SNAPSHOT
```
This allows you to name your newly created project. It will interactively ask
you for the `GroupId`,
@@ -204,7 +204,7 @@ simply include `statefun-flink-distribution` as a
dependency to your application
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>statefun-flink-distribution</artifactId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</version>
</dependency>
```
diff --git a/docs/_config.yml b/docs/_config.yml
index 31d4852..9d325eb 100644
--- a/docs/_config.yml
+++ b/docs/_config.yml
@@ -27,10 +27,10 @@
# we change the version for the complete docs when forking of a release branch
# etc.
# The full version string as referenced in Maven (e.g. 1.2.1)
-version: "2.1-SNAPSHOT"
+version: "2.2-SNAPSHOT"
# For stable releases, leave the bugfix version out (e.g. 1.2). For snapshot
# release this should be the same as the regular version
-version_title: "2.1-SNAPSHOT"
+version_title: "2.2-SNAPSHOT"
# The Flink version supported by this version of Stateful Functions
flink_version: "1.10.0"
# Branch on Github for this version
diff --git a/pom.xml b/pom.xml
index c25c9cf..4854bba 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@ under the License.
<artifactId>statefun-parent</artifactId>
<groupId>org.apache.flink</groupId>
<name>statefun-parent</name>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..df33664 100644
--- a/statefun-e2e-tests/pom.xml
+++ b/statefun-e2e-tests/pom.xml
@@ -21,7 +21,7 @@ under the License.
<parent>
<artifactId>statefun-parent</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..49932f3 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 @@ under the License.
<parent>
<artifactId>statefun-e2e-tests</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..ad96212 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 @@ under the License.
<parent>
<artifactId>statefun-e2e-tests</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..489f018 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.2-SNAPSHOT
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..349d17e 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 @@ under the License.
<parent>
<artifactId>statefun-e2e-tests</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..fb48619 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.2-SNAPSHOT
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..ea2907f 100644
--- a/statefun-e2e-tests/statefun-sanity-e2e/pom.xml
+++ b/statefun-e2e-tests/statefun-sanity-e2e/pom.xml
@@ -21,7 +21,7 @@ under the License.
<parent>
<artifactId>statefun-e2e-tests</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..91b703d 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.2-SNAPSHOT
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..2030dea 100644
--- a/statefun-examples/pom.xml
+++ b/statefun-examples/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<artifactId>statefun-parent</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..4128346 100644
--- a/statefun-examples/statefun-async-example/pom.xml
+++ b/statefun-examples/statefun-async-example/pom.xml
@@ -21,7 +21,7 @@ under the License.
<parent>
<artifactId>statefun-examples</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..d9170d7 100644
--- a/statefun-examples/statefun-flink-harness-example/pom.xml
+++ b/statefun-examples/statefun-flink-harness-example/pom.xml
@@ -21,7 +21,7 @@ under the License.
<parent>
<artifactId>statefun-examples</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..f3681d2 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.2-SNAPSHOT
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..d372f2e 100644
--- a/statefun-examples/statefun-greeter-example/pom.xml
+++ b/statefun-examples/statefun-greeter-example/pom.xml
@@ -21,7 +21,7 @@ under the License.
<parent>
<artifactId>statefun-examples</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..7e8201d 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.2-SNAPSHOT
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..7e8201d 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.2-SNAPSHOT
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..06ef568 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.2-SNAPSHOT
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..f01a7b2 100644
--- a/statefun-examples/statefun-ridesharing-example/pom.xml
+++ b/statefun-examples/statefun-ridesharing-example/pom.xml
@@ -21,7 +21,7 @@ under the License.
<parent>
<artifactId>statefun-examples</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..0abe223 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 @@ under the License.
<parent>
<artifactId>statefun-ridesharing-example</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..a0c0af7 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 @@ under the License.
<parent>
<artifactId>statefun-ridesharing-example</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..4a1ace0 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 @@ under the License.
<parent>
<artifactId>statefun-ridesharing-example</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..6ae8374 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.2-SNAPSHOT
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..95d886c 100644
--- a/statefun-examples/statefun-shopping-cart-example/pom.xml
+++ b/statefun-examples/statefun-shopping-cart-example/pom.xml
@@ -21,7 +21,7 @@ under the License.
<parent>
<artifactId>statefun-examples</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..4bc97a1 100644
--- a/statefun-examples/statefun-state-processor-example/pom.xml
+++ b/statefun-examples/statefun-state-processor-example/pom.xml
@@ -21,7 +21,7 @@ under the License.
<parent>
<artifactId>statefun-examples</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
diff --git a/statefun-flink/pom.xml b/statefun-flink/pom.xml
index ecd22b7..b400461 100644
--- a/statefun-flink/pom.xml
+++ b/statefun-flink/pom.xml
@@ -22,7 +22,7 @@ under the License.
<parent>
<artifactId>statefun-parent</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
diff --git a/statefun-flink/statefun-flink-common/pom.xml
b/statefun-flink/statefun-flink-common/pom.xml
index e6f3a43..3596746 100644
--- a/statefun-flink/statefun-flink-common/pom.xml
+++ b/statefun-flink/statefun-flink-common/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>statefun-flink</artifactId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
diff --git a/statefun-flink/statefun-flink-core/pom.xml
b/statefun-flink/statefun-flink-core/pom.xml
index d140f9b..e9babcc 100644
--- a/statefun-flink/statefun-flink-core/pom.xml
+++ b/statefun-flink/statefun-flink-core/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>statefun-flink</artifactId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
diff --git a/statefun-flink/statefun-flink-distribution/pom.xml
b/statefun-flink/statefun-flink-distribution/pom.xml
index 3e0f5ff..027a460 100644
--- a/statefun-flink/statefun-flink-distribution/pom.xml
+++ b/statefun-flink/statefun-flink-distribution/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>statefun-flink</artifactId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
diff --git a/statefun-flink/statefun-flink-harness/pom.xml
b/statefun-flink/statefun-flink-harness/pom.xml
index 11b38bb..7d984c3 100644
--- a/statefun-flink/statefun-flink-harness/pom.xml
+++ b/statefun-flink/statefun-flink-harness/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>statefun-flink</artifactId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..dab5936 100644
--- a/statefun-flink/statefun-flink-io-bundle/pom.xml
+++ b/statefun-flink/statefun-flink-io-bundle/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>statefun-flink</artifactId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
diff --git a/statefun-flink/statefun-flink-io/pom.xml
b/statefun-flink/statefun-flink-io/pom.xml
index 263eaa1..d655991 100644
--- a/statefun-flink/statefun-flink-io/pom.xml
+++ b/statefun-flink/statefun-flink-io/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>statefun-flink</artifactId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
diff --git a/statefun-flink/statefun-flink-launcher/pom.xml
b/statefun-flink/statefun-flink-launcher/pom.xml
index 0b271e2..001a0e0 100644
--- a/statefun-flink/statefun-flink-launcher/pom.xml
+++ b/statefun-flink/statefun-flink-launcher/pom.xml
@@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.flink</groupId>
<artifactId>statefun-flink</artifactId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..06cee7e 100644
--- a/statefun-flink/statefun-flink-state-processor/pom.xml
+++ b/statefun-flink/statefun-flink-state-processor/pom.xml
@@ -21,7 +21,7 @@ under the License.
<parent>
<artifactId>statefun-flink</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
diff --git a/statefun-kafka-io/pom.xml b/statefun-kafka-io/pom.xml
index 32abd5f..3c5fd6a 100644
--- a/statefun-kafka-io/pom.xml
+++ b/statefun-kafka-io/pom.xml
@@ -21,7 +21,7 @@ under the License.
<parent>
<artifactId>statefun-parent</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..b72a644 100644
--- a/statefun-kinesis-io/pom.xml
+++ b/statefun-kinesis-io/pom.xml
@@ -21,7 +21,7 @@ under the License.
<parent>
<artifactId>statefun-parent</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
diff --git a/statefun-python-sdk/setup.py b/statefun-python-sdk/setup.py
index 937d189..f416657 100644
--- a/statefun-python-sdk/setup.py
+++ b/statefun-python-sdk/setup.py
@@ -27,7 +27,7 @@ with io.open(os.path.join(this_directory, 'README.md'), 'r',
encoding='utf-8') a
setup(
name='apache-flink-statefun',
- version='2.1-SNAPSHOT',
+ version='2.2-SNAPSHOT',
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..2cfc8b1 100644
--- a/statefun-quickstart/pom.xml
+++ b/statefun-quickstart/pom.xml
@@ -21,7 +21,7 @@ under the License.
<parent>
<artifactId>statefun-parent</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
diff --git a/statefun-sdk/pom.xml b/statefun-sdk/pom.xml
index c36903f..aecde13 100644
--- a/statefun-sdk/pom.xml
+++ b/statefun-sdk/pom.xml
@@ -21,7 +21,7 @@ under the License.
<parent>
<artifactId>statefun-parent</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
diff --git a/statefun-testutil/pom.xml b/statefun-testutil/pom.xml
index d2fba95..8da22fe 100644
--- a/statefun-testutil/pom.xml
+++ b/statefun-testutil/pom.xml
@@ -21,7 +21,7 @@ under the License.
<parent>
<artifactId>statefun-parent</artifactId>
<groupId>org.apache.flink</groupId>
- <version>2.1-SNAPSHOT</version>
+ <version>2.2-SNAPSHOT</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..3ab5946 100755
--- a/tools/docker/build-stateful-functions.sh
+++ b/tools/docker/build-stateful-functions.sh
@@ -21,7 +21,7 @@ set -e
# 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.2-SNAPSHOT
#
# setup the environment
diff --git a/tools/k8s/Chart.yaml b/tools/k8s/Chart.yaml
index ebf1ffd..3a23e8a 100644
--- a/tools/k8s/Chart.yaml
+++ b/tools/k8s/Chart.yaml
@@ -17,5 +17,5 @@ apiVersion: v2
name: statefun-k8s
description: A Helm chart for a Stateful function pplication deployed on
Kubernetes
type: application
-version: 2.1-SNAPSHOT
+version: 2.2-SNAPSHOT
appVersion: 1.16.0
\ No newline at end of file