Skip to content

Commit d124ba4

Browse files
committed
Bump version to 2.5.0
1 parent 1b98aee commit d124ba4

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ group=org.apache.kafka
2020
# - tests/kafkatest/__init__.py
2121
# - tests/kafkatest/version.py (variable DEV_VERSION)
2222
# - kafka-merge-pr.py
23-
version=2.5.0-SNAPSHOT
23+
version=2.5.0
2424
scalaVersion=2.12.10
2525
task=build
2626
org.gradle.jvmargs=-Xmx1024m -Xss2m

streams/quickstart/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>org.apache.kafka</groupId>
2828
<artifactId>streams-quickstart</artifactId>
29-
<version>2.5.0-SNAPSHOT</version>
29+
<version>2.5.0</version>
3030
<relativePath>..</relativePath>
3131
</parent>
3232

streams/quickstart/java/src/main/resources/archetype-resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<properties>
3131
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32-
<kafka.version>2.5.0-SNAPSHOT</kafka.version>
32+
<kafka.version>2.5.0</kafka.version>
3333
<slf4j.version>1.7.7</slf4j.version>
3434
<log4j.version>1.2.17</log4j.version>
3535
</properties>

streams/quickstart/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<groupId>org.apache.kafka</groupId>
2323
<artifactId>streams-quickstart</artifactId>
2424
<packaging>pom</packaging>
25-
<version>2.5.0-SNAPSHOT</version>
25+
<version>2.5.0</version>
2626

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

tests/kafkatest/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515

1616
# This determines the version of kafkatest that can be published to PyPi and installed with pip
1717
#
18-
# Note that in development, this version name can't follow Kafka's convention of having a trailing "-SNAPSHOT"
18+
# Note that in
1919
# due to python version naming restrictions, which are enforced by python packaging tools
20-
# (see https://www.python.org/dev/peps/pep-0440/)
20+
# (see https://www.python.org
2121
#
22-
# Instead, in development branches, the version should have a suffix of the form ".devN"
22+
# Instead, in
2323
#
24-
# For example, when Kafka is at version 1.0.0-SNAPSHOT, this should be something like "1.0.0.dev0"
25-
__version__ = '2.5.0.dev0'
24+
# For example, when Kafka is at version 1.0.0-SNAPSHOT, this should be something like "1.0.0
25+
__version__ = '2.5.0'

0 commit comments

Comments
 (0)