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 05d5160 [release] Update version to 3.1-SNAPSHOT 05d5160 is described below commit 05d51608903983188afbb4bba21ee628a12062dd Author: Tzu-Li (Gordon) Tai <tzuli...@apache.org> AuthorDate: Fri Mar 26 13:55:24 2021 +0800 [release] Update version to 3.1-SNAPSHOT --- README.md | 4 ++-- docs/config.toml | 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-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-quickstart/pom.xml | 2 +- statefun-sdk-embedded/pom.xml | 2 +- statefun-sdk-java/pom.xml | 2 +- statefun-sdk-protos/pom.xml | 2 +- statefun-sdk-python/setup.py | 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 +- 34 files changed, 36 insertions(+), 36 deletions(-) diff --git a/README.md b/README.md index 510c2e4..92dcd7c 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=3.0-SNAPSHOT + -DarchetypeVersion=3.1-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>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> </dependency> ``` diff --git a/docs/config.toml b/docs/config.toml index 6694ed2..06c5124 100644 --- a/docs/config.toml +++ b/docs/config.toml @@ -34,11 +34,11 @@ pygmentsUseClasses = true # 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 = "3.0-SNAPSHOT" + Version = "3.1-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 - VersionTitle = "3.0-SNAPSHOT" + VersionTitle = "3.1-SNAPSHOT" # The branch for this version of Apache Flink Stateful Functions Branch = "master" diff --git a/pom.xml b/pom.xml index b089861..608894b 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>3.0-SNAPSHOT</version> + <version>3.1-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 d410563..456c4f0 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>3.0-SNAPSHOT</version> + <version>3.1-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 8670dec..1ca790e 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>3.0-SNAPSHOT</version> + <version>3.1-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 036686d..9f6d5ff 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>3.0-SNAPSHOT</version> + <version>3.1-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 ed7d74a..9803a48 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:3.0-SNAPSHOT +FROM flink-statefun:3.1-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 7ca4483..94fe52d 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>3.0-SNAPSHOT</version> + <version>3.1-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 85b8293..fb58374 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:3.0-SNAPSHOT +FROM flink-statefun:3.1-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 64becc5..95ead22 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>3.0-SNAPSHOT</version> + <version>3.1-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 754ba1f..3e0ce2b 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:3.0-SNAPSHOT +FROM flink-statefun:3.1-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-flink/pom.xml b/statefun-flink/pom.xml index 45ca4d3..cc34020 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>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-flink/statefun-flink-common/pom.xml b/statefun-flink/statefun-flink-common/pom.xml index 8790b64..ac96bef 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>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-flink/statefun-flink-core/pom.xml b/statefun-flink/statefun-flink-core/pom.xml index 7b47fd6..9aaec82 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>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-flink/statefun-flink-datastream/pom.xml b/statefun-flink/statefun-flink-datastream/pom.xml index 6512f14..5244784 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>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-flink/statefun-flink-distribution/pom.xml b/statefun-flink/statefun-flink-distribution/pom.xml index a53f810..bf6c6d8 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>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-flink/statefun-flink-harness/pom.xml b/statefun-flink/statefun-flink-harness/pom.xml index 9ac1f88..9b33e25 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>3.0-SNAPSHOT</version> + <version>3.1-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 fa6befe..594c3e3 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>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-flink/statefun-flink-io/pom.xml b/statefun-flink/statefun-flink-io/pom.xml index 3b8fcf6..960d729 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>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-flink/statefun-flink-launcher/pom.xml b/statefun-flink/statefun-flink-launcher/pom.xml index 178c0e2..1ec955d 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>3.0-SNAPSHOT</version> + <version>3.1-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 e886117..e02a22a 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>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/statefun-kafka-io/pom.xml b/statefun-kafka-io/pom.xml index 653c3dc..625dacb 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>3.0-SNAPSHOT</version> + <version>3.1-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 f8d430b..8d6c338 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>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> <relativePath>..</relativePath> </parent> diff --git a/statefun-quickstart/pom.xml b/statefun-quickstart/pom.xml index e620138..54f1594 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>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> <relativePath>..</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/statefun-sdk-embedded/pom.xml b/statefun-sdk-embedded/pom.xml index 1f752fd..e103aa6 100644 --- a/statefun-sdk-embedded/pom.xml +++ b/statefun-sdk-embedded/pom.xml @@ -21,7 +21,7 @@ under the License. <parent> <artifactId>statefun-parent</artifactId> <groupId>org.apache.flink</groupId> - <version>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/statefun-sdk-java/pom.xml b/statefun-sdk-java/pom.xml index d7eb0c9..22293e9 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>3.0-SNAPSHOT</version> + <version>3.1-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 14876ad..c2e4710 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>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> <relativePath>..</relativePath> </parent> <modelVersion>4.0.0</modelVersion> diff --git a/statefun-sdk-python/setup.py b/statefun-sdk-python/setup.py index 210e8ed..a6079ba 100644 --- a/statefun-sdk-python/setup.py +++ b/statefun-sdk-python/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='3.0-SNAPSHOT', + version='3.1-SNAPSHOT', packages=["statefun"], url='https://github.com/apache/flink-statefun', license='https://www.apache.org/licenses/LICENSE-2.0', diff --git a/statefun-shaded/pom.xml b/statefun-shaded/pom.xml index 5e6a0b8..737accb 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>3.0-SNAPSHOT</version> + <version>3.1-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 791b706..d434400 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>3.0-SNAPSHOT</version> + <version>3.1-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 1c87cb5..dc2602f 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>3.0-SNAPSHOT</version> + <version>3.1-SNAPSHOT</version> </parent> <artifactId>statefun-protocol-shaded</artifactId> diff --git a/statefun-testutil/pom.xml b/statefun-testutil/pom.xml index adb882e..5d2f80a 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>3.0-SNAPSHOT</version> + <version>3.1-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 0abfe8d..b38da1e 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=3.0-SNAPSHOT +VERSION_TAG=3.1-SNAPSHOT # # setup the environment diff --git a/tools/k8s/Chart.yaml b/tools/k8s/Chart.yaml index 54869eb..24a8079 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: 3.0-SNAPSHOT +version: 3.1-SNAPSHOT appVersion: 1.16.0 \ No newline at end of file