Skip to content

Commit

Permalink
MINOR: Bump version to 2.5.0-SNAPSHOT (apache#7455)
Browse files Browse the repository at this point in the history
  • Loading branch information
omkreddy authored Oct 7, 2019
1 parent 4ac892c commit 4c2bd56
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions docs/js/templateData.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ limitations under the License.

// Define variables for doc templates
var context={
"version": "24",
"dotVersion": "2.4",
"fullDotVersion": "2.4.0",
"version": "25",
"dotVersion": "2.5",
"fullDotVersion": "2.5.0",
"scalaVersion": "2.12"
};
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=2.4.0-SNAPSHOT
version=2.5.0-SNAPSHOT
scalaVersion=2.12.10
task=build
org.gradle.jvmargs=-Xmx1024m -Xss2m
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", "2.4.0")
DEFAULT_FIX_VERSION = os.environ.get("DEFAULT_FIX_VERSION", "2.5.0")

def get_json(url):
try:
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>2.4.0-SNAPSHOT</version>
<version>2.5.0-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>2.4.0-SNAPSHOT</kafka.version>
<kafka.version>2.5.0-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>2.4.0-SNAPSHOT</version>
<version>2.5.0-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__ = '2.4.0.dev0'
__version__ = '2.5.0.dev0'
2 changes: 1 addition & 1 deletion tests/kafkatest/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def get_version(node=None):
return DEV_BRANCH

DEV_BRANCH = KafkaVersion("dev")
DEV_VERSION = KafkaVersion("2.4.0-SNAPSHOT")
DEV_VERSION = KafkaVersion("2.5.0-SNAPSHOT")

# 0.8.2.x versions
V_0_8_2_1 = KafkaVersion("0.8.2.1")
Expand Down

0 comments on commit 4c2bd56

Please sign in to comment.