MINOR: Bump trunk to 3.6.0-SNAPSHOT (#13570)

Reviewers: David Jacot <djacot@confluent.io>
This commit is contained in:
Mickael Maison 2023-04-14 14:17:07 +02:00 committed by GitHub
parent b1830e4aa2
commit dc1ede8d89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 14 additions and 10 deletions

View File

@ -17,8 +17,8 @@ limitations under the License.
// Define variables for doc templates // Define variables for doc templates
var context={ var context={
"version": "35", "version": "36",
"dotVersion": "3.5", "dotVersion": "3.6",
"fullDotVersion": "3.5.0", "fullDotVersion": "3.6.0",
"scalaVersion": "2.13" "scalaVersion": "2.13"
}; };

View File

@ -23,7 +23,7 @@ group=org.apache.kafka
# - streams/quickstart/pom.xml # - streams/quickstart/pom.xml
# - streams/quickstart/java/src/main/resources/archetype-resources/pom.xml # - streams/quickstart/java/src/main/resources/archetype-resources/pom.xml
# - streams/quickstart/java/pom.xml # - streams/quickstart/java/pom.xml
version=3.5.0-SNAPSHOT version=3.6.0-SNAPSHOT
scalaVersion=2.13.10 scalaVersion=2.13.10
task=build task=build
org.gradle.jvmargs=-Xmx2g -Xss4m -XX:+UseParallelGC org.gradle.jvmargs=-Xmx2g -Xss4m -XX:+UseParallelGC

View File

@ -70,7 +70,7 @@ TEMP_BRANCH_PREFIX = "PR_TOOL"
DEV_BRANCH_NAME = "trunk" DEV_BRANCH_NAME = "trunk"
DEFAULT_FIX_VERSION = os.environ.get("DEFAULT_FIX_VERSION", "3.5.0") DEFAULT_FIX_VERSION = os.environ.get("DEFAULT_FIX_VERSION", "3.6.0")
ORIGINAL_HEAD = "" ORIGINAL_HEAD = ""

View File

@ -26,7 +26,7 @@
<parent> <parent>
<groupId>org.apache.kafka</groupId> <groupId>org.apache.kafka</groupId>
<artifactId>streams-quickstart</artifactId> <artifactId>streams-quickstart</artifactId>
<version>3.5.0-SNAPSHOT</version> <version>3.6.0-SNAPSHOT</version>
<relativePath>..</relativePath> <relativePath>..</relativePath>
</parent> </parent>

View File

@ -29,7 +29,7 @@
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kafka.version>3.5.0-SNAPSHOT</kafka.version> <kafka.version>3.6.0-SNAPSHOT</kafka.version>
<slf4j.version>1.7.36</slf4j.version> <slf4j.version>1.7.36</slf4j.version>
</properties> </properties>

View File

@ -22,7 +22,7 @@
<groupId>org.apache.kafka</groupId> <groupId>org.apache.kafka</groupId>
<artifactId>streams-quickstart</artifactId> <artifactId>streams-quickstart</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<version>3.5.0-SNAPSHOT</version> <version>3.6.0-SNAPSHOT</version>
<name>Kafka Streams :: Quickstart</name> <name>Kafka Streams :: Quickstart</name>

View File

@ -22,4 +22,4 @@
# Instead, in development branches, the version should have a suffix of the form ".devN" # Instead, in development branches, the version should have a suffix of the form ".devN"
# #
# For example, when Kafka is at version 1.0.0-SNAPSHOT, this should be something like "1.0.0.dev0" # For example, when Kafka is at version 1.0.0-SNAPSHOT, this should be something like "1.0.0.dev0"
__version__ = '3.5.0.dev0' __version__ = '3.6.0.dev0'

View File

@ -249,3 +249,7 @@ LATEST_3_4 = V_3_4_0
# 3.5.x versions # 3.5.x versions
V_3_5_0 = KafkaVersion("3.5.0") V_3_5_0 = KafkaVersion("3.5.0")
LATEST_3_5 = V_3_5_0 LATEST_3_5 = V_3_5_0
# 3.6.x versions
V_3_6_0 = KafkaVersion("3.6.0")
LATEST_3_6 = V_3_6_0