You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ab...@apache.org on 2022/12/08 02:29:26 UTC

[kafka] branch trunk updated: MINOR: Bump trunk to 3.5.0-SNAPSHOT (#12960)

This is an automated email from the ASF dual-hosted git repository.

ableegoldman pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new c1a54671e8f MINOR: Bump trunk to 3.5.0-SNAPSHOT (#12960)
c1a54671e8f is described below

commit c1a54671e8fc6c7daec5f5ec3d8c934be96b4989
Author: A. Sophie Blee-Goldman <so...@confluent.io>
AuthorDate: Wed Dec 7 18:29:20 2022 -0800

    MINOR: Bump trunk to 3.5.0-SNAPSHOT (#12960)
    
    Version bumps in trunk after the creation of the 3.4 branch.
    
    Reviewers: Ismael Juma <is...@juma.me.uk>
---
 docs/js/templateData.js     | 6 +++---
 gradle.properties           | 2 +-
 kafka-merge-pr.py           | 2 +-
 tests/kafkatest/__init__.py | 2 +-
 tests/kafkatest/version.py  | 6 +++++-
 5 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/docs/js/templateData.js b/docs/js/templateData.js
index e0ad3e95325..e23d6ba56d3 100644
--- a/docs/js/templateData.js
+++ b/docs/js/templateData.js
@@ -17,8 +17,8 @@ limitations under the License.
 
 // Define variables for doc templates
 var context={
-    "version": "34",
-    "dotVersion": "3.4",
-    "fullDotVersion": "3.4.0",
+    "version": "35",
+    "dotVersion": "3.5",
+    "fullDotVersion": "3.5.0",
     "scalaVersion": "2.13"
 };
diff --git a/gradle.properties b/gradle.properties
index 0916f7ce6ee..10cb937c075 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -20,7 +20,7 @@ group=org.apache.kafka
 #  - tests/kafkatest/__init__.py
 #  - tests/kafkatest/version.py (variable DEV_VERSION)
 #  - kafka-merge-pr.py
-version=3.4.0-SNAPSHOT
+version=3.5.0-SNAPSHOT
 scalaVersion=2.13.10
 task=build
 org.gradle.jvmargs=-Xmx2g -Xss4m -XX:+UseParallelGC
diff --git a/kafka-merge-pr.py b/kafka-merge-pr.py
index 1e0b3c25b95..7c4f6620373 100755
--- a/kafka-merge-pr.py
+++ b/kafka-merge-pr.py
@@ -70,7 +70,7 @@ TEMP_BRANCH_PREFIX = "PR_TOOL"
 
 DEV_BRANCH_NAME = "trunk"
 
-DEFAULT_FIX_VERSION = os.environ.get("DEFAULT_FIX_VERSION", "3.4.0")
+DEFAULT_FIX_VERSION = os.environ.get("DEFAULT_FIX_VERSION", "3.5.0")
 
 ORIGINAL_HEAD = ""
 
diff --git a/tests/kafkatest/__init__.py b/tests/kafkatest/__init__.py
index 00f67dcc818..74ec83d9bf7 100644
--- a/tests/kafkatest/__init__.py
+++ b/tests/kafkatest/__init__.py
@@ -22,4 +22,4 @@
 # 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"
-__version__ = '3.4.0.dev0'
+__version__ = '3.5.0.dev0'
diff --git a/tests/kafkatest/version.py b/tests/kafkatest/version.py
index b7b21185a46..5ffc325904b 100644
--- a/tests/kafkatest/version.py
+++ b/tests/kafkatest/version.py
@@ -119,7 +119,7 @@ def get_version(node=None):
         return DEV_BRANCH
 
 DEV_BRANCH = KafkaVersion("dev")
-DEV_VERSION = KafkaVersion("3.4.0-SNAPSHOT")
+DEV_VERSION = KafkaVersion("3.5.0-SNAPSHOT")
 
 LATEST_METADATA_VERSION = "3.3"
 
@@ -245,3 +245,7 @@ LATEST_3_3 = V_3_3_1
 # 3.4.x versions
 V_3_4_0 = KafkaVersion("3.4.0")
 LATEST_3_4 = V_3_4_0
+
+# 3.5.x versions
+V_3_5_0 = KafkaVersion("3.5.0")
+LATEST_3_5 = V_3_5_0
\ No newline at end of file