Skip to content

Commit

Permalink
MINOR: Update 3.2 branch version to 3.2.1-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
cadonna committed May 9, 2022
1 parent 1d9a09c commit 8c8d71c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/js/templateData.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ limitations under the License.
var context={
"version": "32",
"dotVersion": "3.2",
"fullDotVersion": "3.2.0",
"fullDotVersion": "3.2.1-SNAPSHOT",
"scalaVersion": "2.13"
};
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.0
version=3.2.1-SNAPSHOT
scalaVersion=2.13.6
task=build
org.gradle.jvmargs=-Xmx2g -Xss4m -XX:+UseParallelGC
Expand Down
2 changes: 1 addition & 1 deletion kafka-merge-pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@

DEV_BRANCH_NAME = "trunk"

DEFAULT_FIX_VERSION = os.environ.get("DEFAULT_FIX_VERSION", "3.2.0")
DEFAULT_FIX_VERSION = os.environ.get("DEFAULT_FIX_VERSION", "3.2.1-SNAPSHOT")

ORIGINAL_HEAD = ""

Expand Down
2 changes: 1 addition & 1 deletion streams/quickstart/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.kafka</groupId>
<artifactId>streams-quickstart</artifactId>
<version>3.2.0</version>
<version>3.2.1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kafka.version>3.2.0</kafka.version>
<kafka.version>3.2.1-SNAPSHOT</kafka.version>
<slf4j.version>1.7.7</slf4j.version>
<log4j.version>1.2.17</log4j.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion streams/quickstart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<groupId>org.apache.kafka</groupId>
<artifactId>streams-quickstart</artifactId>
<packaging>pom</packaging>
<version>3.2.0</version>
<version>3.2.1-SNAPSHOT</version>

<name>Kafka Streams :: Quickstart</name>

Expand Down
2 changes: 1 addition & 1 deletion tests/kafkatest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.0'
__version__ = '3.2.1.dev0'

0 comments on commit 8c8d71c

Please sign in to comment.