Skip to content

Commit

Permalink
Bump version to 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mumrah committed Apr 8, 2020
1 parent 146811a commit 66563e7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
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=2.5.0-SNAPSHOT
version=2.5.0
scalaVersion=2.12.10
task=build
org.gradle.jvmargs=-Xmx1024m -Xss2m
2 changes: 1 addition & 1 deletion streams/quickstart/java/pom.xml
Expand Up @@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.kafka</groupId>
<artifactId>streams-quickstart</artifactId>
<version>2.5.0-SNAPSHOT</version>
<version>2.5.0</version>
<relativePath>..</relativePath>
</parent>

Expand Down
Expand Up @@ -29,7 +29,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kafka.version>2.5.0-SNAPSHOT</kafka.version>
<kafka.version>2.5.0</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
Expand Up @@ -22,7 +22,7 @@
<groupId>org.apache.kafka</groupId>
<artifactId>streams-quickstart</artifactId>
<packaging>pom</packaging>
<version>2.5.0-SNAPSHOT</version>
<version>2.5.0</version>

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

Expand Down
10 changes: 5 additions & 5 deletions tests/kafkatest/__init__.py
Expand Up @@ -15,11 +15,11 @@

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

0 comments on commit 66563e7

Please sign in to comment.