MINOR: Update 3.7 branch version to 3.7.2-SNAPSHOT

This commit is contained in:
Matthias J. Sax 2024-12-12 15:43:59 -08:00
parent 79a8f2b5f4
commit fe309afa9f
8 changed files with 8 additions and 8 deletions

View File

@ -19,6 +19,6 @@ limitations under the License.
var context={ var context={
"version": "37", "version": "37",
"dotVersion": "3.7", "dotVersion": "3.7",
"fullDotVersion": "3.7.2", "fullDotVersion": "3.7.3-SNAPSHOT",
"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.7.2 version=3.7.3-SNAPSHOT
scalaVersion=2.13.12 scalaVersion=2.13.12
# 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
# New version of Swagger 2.2.14 requires minimum JDK 11. # New version of Swagger 2.2.14 requires minimum JDK 11.

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.7.2-SNAPSHOT") DEFAULT_FIX_VERSION = os.environ.get("DEFAULT_FIX_VERSION", "3.7.3-SNAPSHOT")
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.7.2</version> <version>3.7.3-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.7.2</kafka.version> <kafka.version>3.7.3-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.7.2</version> <version>3.7.3-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.7.2' __version__ = '3.7.3.dev0'

View File

@ -122,7 +122,7 @@ def get_version(node=None):
return DEV_BRANCH return DEV_BRANCH
DEV_BRANCH = KafkaVersion("dev") DEV_BRANCH = KafkaVersion("dev")
DEV_VERSION = KafkaVersion("3.7.2-SNAPSHOT") DEV_VERSION = KafkaVersion("3.7.3-SNAPSHOT")
LATEST_METADATA_VERSION = "3.7" LATEST_METADATA_VERSION = "3.7"