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
commit 929872ab0c29c71e9bd0072de4ac954841ca54fe Author: Tzu-Li (Gordon) Tai <[email protected]> AuthorDate: Mon Mar 22 11:30:31 2021 +0800 [release] Update version to 3.0-SNAPSHOT This closes #216. --- README.md | 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-remote-e2e/pom.xml | 2 +- .../statefun-exactly-once-remote-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-e2e-tests/statefun-smoke-e2e/pom.xml | 2 +- statefun-e2e-tests/statefun-smoke-e2e/src/test/resources/Dockerfile | 2 +- statefun-examples/pom.xml | 2 +- statefun-examples/statefun-async-example/pom.xml | 2 +- statefun-examples/statefun-async-python-example/statefun/Dockerfile | 2 +- statefun-examples/statefun-flink-datastream-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-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-datastream/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-java/pom.xml | 2 +- statefun-sdk-protos/pom.xml | 2 +- statefun-sdk/pom.xml | 2 +- statefun-shaded/pom.xml | 2 +- statefun-shaded/statefun-protobuf-shaded/pom.xml | 2 +- statefun-shaded/statefun-protocol-shaded/pom.xml | 2 +- statefun-testutil/pom.xml | 2 +- tools/docker/build-stateful-functions.sh | 2 +- tools/k8s/Chart.yaml | 2 +- 49 files changed, 50 insertions(+), 50 deletions(-) diff --git a/README.md b/README.md index 0d29bce..aa00b22 100755 --- a/README.md +++ b/README.md @@ -135,7 +135,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.3-SNAPSHOT + -DarchetypeVersion=3.0-SNAPSHOT ``` This allows you to name your newly created project. It will interactively ask you for the `GroupId`, @@ -212,7 +212,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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> </dependency> ``` diff --git a/pom.xml b/pom.xml index 9c2381d..fc84524 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.3-SNAPSHOT</version> + <version>3.0-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 94a8994..792e332 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.3-SNAPSHOT</version> + <version>3.0-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 5510f92..8670dec 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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/statefun-e2e-tests/statefun-exactly-once-remote-e2e/pom.xml b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/pom.xml index 0909b16..036686d 100644 --- a/statefun-e2e-tests/statefun-exactly-once-remote-e2e/pom.xml +++ b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/pom.xml @@ -21,7 +21,7 @@ under the License. <parent> <artifactId>statefun-e2e-tests</artifactId> <groupId>org.apache.flink</groupId> - <version>2.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/Dockerfile b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/Dockerfile index d11287e..ed7d74a 100644 --- a/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/Dockerfile +++ b/statefun-e2e-tests/statefun-exactly-once-remote-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.3-SNAPSHOT +FROM flink-statefun:3.0-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 02f1486..da85667 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.3-SNAPSHOT</version> + <version>3.0-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 529ff31..85b8293 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.3-SNAPSHOT +FROM flink-statefun:3.0-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-e2e-tests/statefun-smoke-e2e/pom.xml b/statefun-e2e-tests/statefun-smoke-e2e/pom.xml index 126cf5c..89966e5 100644 --- a/statefun-e2e-tests/statefun-smoke-e2e/pom.xml +++ b/statefun-e2e-tests/statefun-smoke-e2e/pom.xml @@ -21,7 +21,7 @@ under the License. <parent> <artifactId>statefun-e2e-tests</artifactId> <groupId>org.apache.flink</groupId> - <version>2.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/statefun-e2e-tests/statefun-smoke-e2e/src/test/resources/Dockerfile b/statefun-e2e-tests/statefun-smoke-e2e/src/test/resources/Dockerfile index 3166768..754ba1f 100644 --- a/statefun-e2e-tests/statefun-smoke-e2e/src/test/resources/Dockerfile +++ b/statefun-e2e-tests/statefun-smoke-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.3-SNAPSHOT +FROM flink-statefun:3.0-SNAPSHOT RUN mkdir -p /opt/statefun/modules/statefun-smoke-e2e COPY statefun-smoke-e2e*.jar /opt/statefun/modules/statefun-smoke-e2e/ diff --git a/statefun-examples/pom.xml b/statefun-examples/pom.xml index 6af873b..e0df9d8 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.3-SNAPSHOT</version> + <version>3.0-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 8e94c01..2d19c5e 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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> <relativePath>..</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/statefun-examples/statefun-async-python-example/statefun/Dockerfile b/statefun-examples/statefun-async-python-example/statefun/Dockerfile index d35d2af..3ef0fe8 100644 --- a/statefun-examples/statefun-async-python-example/statefun/Dockerfile +++ b/statefun-examples/statefun-async-python-example/statefun/Dockerfile @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM flink-statefun:2.3-SNAPSHOT +FROM flink-statefun:3.0-SNAPSHOT RUN mkdir -p /opt/statefun/modules/greeter ADD module.yaml /opt/statefun/modules/greeter diff --git a/statefun-examples/statefun-flink-datastream-example/pom.xml b/statefun-examples/statefun-flink-datastream-example/pom.xml index e3ff780..e64a5f0 100644 --- a/statefun-examples/statefun-flink-datastream-example/pom.xml +++ b/statefun-examples/statefun-flink-datastream-example/pom.xml @@ -21,7 +21,7 @@ under the License. <parent> <artifactId>statefun-examples</artifactId> <groupId>org.apache.flink</groupId> - <version>2.3-SNAPSHOT</version> + <version>3.0-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 5098077..872e68d 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.3-SNAPSHOT</version> + <version>3.0-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 3da2c8b..d255e55 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.3-SNAPSHOT +FROM flink-statefun:3.0-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 4e2ed04..41df062 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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> <relativePath>..</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/statefun-examples/statefun-python-k8s-example/Dockerfile.statefun b/statefun-examples/statefun-python-k8s-example/Dockerfile.statefun index d35d2af..3ef0fe8 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.3-SNAPSHOT +FROM flink-statefun:3.0-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 de172a4..dd417bd 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.3-SNAPSHOT +FROM flink-statefun:3.0-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 79cb9df..b8e2509 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.3-SNAPSHOT</version> + <version>3.0-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 51fe136..8ebde9a 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.3-SNAPSHOT</version> + <version>3.0-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 dda4abd..e788fde 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.3-SNAPSHOT</version> + <version>3.0-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 8c90b14..a41fcae 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.3-SNAPSHOT</version> + <version>3.0-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 b26c427..43cef61 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.3-SNAPSHOT +FROM flink-statefun:3.0-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 8608d19..72b3deb 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.3-SNAPSHOT</version> + <version>3.0-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 fac4344..dbb562a 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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> <relativePath>..</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/statefun-flink/pom.xml b/statefun-flink/pom.xml index 4fee6c9..45ca4d3 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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-flink/statefun-flink-common/pom.xml b/statefun-flink/statefun-flink-common/pom.xml index 8063972..8790b64 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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-flink/statefun-flink-core/pom.xml b/statefun-flink/statefun-flink-core/pom.xml index 20f56d9..85e21a3 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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-flink/statefun-flink-datastream/pom.xml b/statefun-flink/statefun-flink-datastream/pom.xml index 4452af8..29fe909 100644 --- a/statefun-flink/statefun-flink-datastream/pom.xml +++ b/statefun-flink/statefun-flink-datastream/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <groupId>org.apache.flink</groupId> <artifactId>statefun-flink</artifactId> - <version>2.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-flink/statefun-flink-distribution/pom.xml b/statefun-flink/statefun-flink-distribution/pom.xml index 1eaa9b8..4dc79f5 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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-flink/statefun-flink-harness/pom.xml b/statefun-flink/statefun-flink-harness/pom.xml index 7ec52e4..9ac1f88 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.3-SNAPSHOT</version> + <version>3.0-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 251955a..7752876 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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-flink/statefun-flink-io/pom.xml b/statefun-flink/statefun-flink-io/pom.xml index e0da70e..a0d6916 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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-flink/statefun-flink-launcher/pom.xml b/statefun-flink/statefun-flink-launcher/pom.xml index 22f48e2..178c0e2 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.3-SNAPSHOT</version> + <version>3.0-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 95a05c4..d88795d 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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/statefun-kafka-io/pom.xml b/statefun-kafka-io/pom.xml index 5b222a0..0b36f5b 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.3-SNAPSHOT</version> + <version>3.0-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 1f1fdb2..113402d 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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-python-sdk/setup.py b/statefun-python-sdk/setup.py index efe73de..210e8ed 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.3-SNAPSHOT', + version='3.0-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 0342293..e620138 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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> <relativePath>..</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/statefun-sdk-java/pom.xml b/statefun-sdk-java/pom.xml index e621e2c..d7eb0c9 100644 --- a/statefun-sdk-java/pom.xml +++ b/statefun-sdk-java/pom.xml @@ -21,7 +21,7 @@ under the License. <parent> <artifactId>statefun-parent</artifactId> <groupId>org.apache.flink</groupId> - <version>2.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>statefun-sdk-java</artifactId> diff --git a/statefun-sdk-protos/pom.xml b/statefun-sdk-protos/pom.xml index 7545d8b..14876ad 100644 --- a/statefun-sdk-protos/pom.xml +++ b/statefun-sdk-protos/pom.xml @@ -21,7 +21,7 @@ under the License. <parent> <artifactId>statefun-parent</artifactId> <groupId>org.apache.flink</groupId> - <version>2.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> <relativePath>..</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/statefun-sdk/pom.xml b/statefun-sdk/pom.xml index cb121ac..cc2ec4e 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.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/statefun-shaded/pom.xml b/statefun-shaded/pom.xml index e84a5a2..5e6a0b8 100644 --- a/statefun-shaded/pom.xml +++ b/statefun-shaded/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <artifactId>statefun-parent</artifactId> <groupId>org.apache.flink</groupId> - <version>2.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> </parent> <artifactId>statefun-shaded</artifactId> diff --git a/statefun-shaded/statefun-protobuf-shaded/pom.xml b/statefun-shaded/statefun-protobuf-shaded/pom.xml index e625a30..791b706 100644 --- a/statefun-shaded/statefun-protobuf-shaded/pom.xml +++ b/statefun-shaded/statefun-protobuf-shaded/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <artifactId>statefun-shaded</artifactId> <groupId>org.apache.flink</groupId> - <version>2.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> </parent> <artifactId>statefun-protobuf-shaded</artifactId> diff --git a/statefun-shaded/statefun-protocol-shaded/pom.xml b/statefun-shaded/statefun-protocol-shaded/pom.xml index aa7e89d..1c87cb5 100644 --- a/statefun-shaded/statefun-protocol-shaded/pom.xml +++ b/statefun-shaded/statefun-protocol-shaded/pom.xml @@ -23,7 +23,7 @@ under the License. <parent> <artifactId>statefun-shaded</artifactId> <groupId>org.apache.flink</groupId> - <version>2.3-SNAPSHOT</version> + <version>3.0-SNAPSHOT</version> </parent> <artifactId>statefun-protocol-shaded</artifactId> diff --git a/statefun-testutil/pom.xml b/statefun-testutil/pom.xml index ea0102e..2e8f3b1 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.3-SNAPSHOT</version> + <version>3.0-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 8db36fd..0abfe8d 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.3-SNAPSHOT +VERSION_TAG=3.0-SNAPSHOT # # setup the environment diff --git a/tools/k8s/Chart.yaml b/tools/k8s/Chart.yaml index 9082a64..54869eb 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.3-SNAPSHOT +version: 3.0-SNAPSHOT appVersion: 1.16.0 \ No newline at end of file
