MINOR: Bump trunk to 4.1.0-SNAPSHOT (#18213)

Reviewers: Mickael Maison <mickael.maison@gmail.com>
This commit is contained in:
David Jacot 2024-12-16 16:47:13 +01:00 committed by GitHub
parent 92f61b36f4
commit 84049369c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 14 additions and 10 deletions

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", "4.0.0") DEFAULT_FIX_VERSION = os.environ.get("DEFAULT_FIX_VERSION", "4.1.0")
ORIGINAL_HEAD = "" ORIGINAL_HEAD = ""

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": "40", "version": "41",
"dotVersion": "4.0", "dotVersion": "4.1",
"fullDotVersion": "4.0.0", "fullDotVersion": "4.1.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=4.0.0-SNAPSHOT version=4.1.0-SNAPSHOT
scalaVersion=2.13.15 scalaVersion=2.13.15
# Adding swaggerVersion in gradle.properties to have a single version in place for swagger # Adding swaggerVersion in gradle.properties to have a single version in place for swagger
swaggerVersion=2.2.25 swaggerVersion=2.2.25

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>4.0.0-SNAPSHOT</version> <version>4.1.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>4.0.0-SNAPSHOT</kafka.version> <kafka.version>4.1.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>4.0.0-SNAPSHOT</version> <version>4.1.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__ = '4.0.0.dev0' __version__ = '4.1.0.dev0'

View File

@ -107,7 +107,7 @@ def get_version(node=None):
return DEV_BRANCH return DEV_BRANCH
DEV_BRANCH = KafkaVersion("dev") DEV_BRANCH = KafkaVersion("dev")
DEV_VERSION = KafkaVersion("4.0.0-SNAPSHOT") DEV_VERSION = KafkaVersion("4.1.0-SNAPSHOT")
# This should match the LATEST_PRODUCTION version defined in MetadataVersion.java # This should match the LATEST_PRODUCTION version defined in MetadataVersion.java
LATEST_STABLE_METADATA_VERSION = "4.0-IV0" LATEST_STABLE_METADATA_VERSION = "4.0-IV0"
@ -232,3 +232,7 @@ LATEST_3_9 = V_3_9_0
# 4.0.x version # 4.0.x version
V_4_0_0 = KafkaVersion("4.0.0") V_4_0_0 = KafkaVersion("4.0.0")
LATEST_4_0 = V_4_0_0 LATEST_4_0 = V_4_0_0
# 4.1.x version
V_4_1_0 = KafkaVersion("4.1.0")
LATEST_4_1 = V_4_1_0