Skip to content

Commit 46cbfd5

Browse files
committed
[release] Update version to 3.4-SNAPSHOT
1 parent b4a85ef commit 46cbfd5

File tree

43 files changed

+46
-46
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+46
-46
lines changed

docs/config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ pygmentsUseClasses = true
3434
# we change the version for the complete docs when forking of a release branch
3535
# etc.
3636
# The full version string as referenced in Maven (e.g. 1.2.1)
37-
Version = "3.3-SNAPSHOT"
37+
Version = "3.4-SNAPSHOT"
3838

3939
# For stable releases, leave the bugfix version out (e.g. 1.2). For snapshot
4040
# release this should be the same as the regular version
41-
VersionTitle = "3.3-SNAPSHOT"
41+
VersionTitle = "3.4-SNAPSHOT"
4242

4343
# The branch for this version of Apache Flink Stateful Functions
4444
Branch = "master"

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ under the License.
2929
<artifactId>statefun-parent</artifactId>
3030
<groupId>org.apache.flink</groupId>
3131
<name>statefun-parent</name>
32-
<version>3.3-SNAPSHOT</version>
32+
<version>3.4-SNAPSHOT</version>
3333
<packaging>pom</packaging>
3434

3535
<url>http://flink.apache.org</url>

statefun-e2e-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ under the License.
2121
<parent>
2222
<artifactId>statefun-parent</artifactId>
2323
<groupId>org.apache.flink</groupId>
24-
<version>3.3-SNAPSHOT</version>
24+
<version>3.4-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

statefun-e2e-tests/statefun-e2e-tests-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ under the License.
2121
<parent>
2222
<artifactId>statefun-e2e-tests</artifactId>
2323
<groupId>org.apache.flink</groupId>
24-
<version>3.3-SNAPSHOT</version>
24+
<version>3.4-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

statefun-e2e-tests/statefun-smoke-e2e-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ under the License.
2121
<parent>
2222
<artifactId>statefun-e2e-tests</artifactId>
2323
<groupId>org.apache.flink</groupId>
24-
<version>3.3-SNAPSHOT</version>
24+
<version>3.4-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

statefun-e2e-tests/statefun-smoke-e2e-driver/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ under the License.
2121
<parent>
2222
<artifactId>statefun-e2e-tests</artifactId>
2323
<groupId>org.apache.flink</groupId>
24-
<version>3.3-SNAPSHOT</version>
24+
<version>3.4-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

statefun-e2e-tests/statefun-smoke-e2e-embedded/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ under the License.
2121
<parent>
2222
<artifactId>statefun-e2e-tests</artifactId>
2323
<groupId>org.apache.flink</groupId>
24-
<version>3.3-SNAPSHOT</version>
24+
<version>3.4-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

@@ -57,7 +57,7 @@ under the License.
5757
<dependency>
5858
<groupId>org.apache.flink</groupId>
5959
<artifactId>statefun-smoke-e2e-driver</artifactId>
60-
<version>3.3-SNAPSHOT</version>
60+
<version>3.4-SNAPSHOT</version>
6161
</dependency>
6262
</dependencies>
6363

statefun-e2e-tests/statefun-smoke-e2e-embedded/src/test/resources/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
FROM flink-statefun:3.3-SNAPSHOT
16+
FROM flink-statefun:3.4-SNAPSHOT
1717

1818
# Add embedded module. This includes both the embedded function and the driver components as a single jar.
1919
RUN mkdir -p /opt/statefun/modules/statefun-smoke-e2e-embedded/

statefun-e2e-tests/statefun-smoke-e2e-golang/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ under the License.
2121
<parent>
2222
<groupId>org.apache.flink</groupId>
2323
<artifactId>statefun-smoke-e2e-multilang-base</artifactId>
24-
<version>3.3-SNAPSHOT</version>
24+
<version>3.4-SNAPSHOT</version>
2525
<relativePath>../statefun-smoke-e2e-multilang-base/pom.xml</relativePath>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>

statefun-e2e-tests/statefun-smoke-e2e-golang/src/test/resources/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
FROM flink-statefun:3.3-SNAPSHOT
16+
FROM flink-statefun:3.4-SNAPSHOT
1717

1818
RUN mkdir -p /opt/statefun/modules/statefun-smoke-e2e
1919
COPY statefun-smoke-e2e-driver.jar /opt/statefun/modules/statefun-smoke-e2e/

0 commit comments

Comments
 (0)