mirror of https://github.com/apache/kafka.git
MINOR: Bump version to 2.1.0-SNAPSHOT (#5153)
This commit is contained in:
parent
8264492dee
commit
a1ca07d316
|
@ -16,7 +16,7 @@
|
|||
group=org.apache.kafka
|
||||
# NOTE: When you change this version number, you should also make sure to update
|
||||
# the version numbers in tests/kafkatest/__init__.py and kafka-merge-pr.py.
|
||||
version=2.0.0-SNAPSHOT
|
||||
version=2.1.0-SNAPSHOT
|
||||
scalaVersion=2.11.12
|
||||
task=build
|
||||
org.gradle.jvmargs=-Xmx1024m -Xss2m
|
||||
|
|
|
@ -70,7 +70,7 @@ TEMP_BRANCH_PREFIX = "PR_TOOL"
|
|||
|
||||
DEV_BRANCH_NAME = "trunk"
|
||||
|
||||
DEFAULT_FIX_VERSION = os.environ.get("DEFAULT_FIX_VERSION", "2.0.0")
|
||||
DEFAULT_FIX_VERSION = os.environ.get("DEFAULT_FIX_VERSION", "2.1.0")
|
||||
|
||||
def get_json(url):
|
||||
try:
|
||||
|
|
|
@ -26,11 +26,11 @@
|
|||
<parent>
|
||||
<groupId>org.apache.kafka</groupId>
|
||||
<artifactId>streams-quickstart</artifactId>
|
||||
<version>1.2.0-SNAPSHOT</version>
|
||||
<version>2.1.0-SNAPSHOT</version>
|
||||
<relativePath>..</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>streams-quickstart-java</artifactId>
|
||||
<packaging>maven-archetype</packaging>
|
||||
|
||||
</project>
|
||||
</project>
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<kafka.version>1.2.0-SNAPSHOT</kafka.version>
|
||||
<kafka.version>2.1.0-SNAPSHOT</kafka.version>
|
||||
<slf4j.version>1.7.7</slf4j.version>
|
||||
<log4j.version>1.2.17</log4j.version>
|
||||
</properties>
|
||||
|
@ -133,4 +133,4 @@
|
|||
<version>${kafka.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
</project>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<groupId>org.apache.kafka</groupId>
|
||||
<artifactId>streams-quickstart</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<version>1.2.0-SNAPSHOT</version>
|
||||
<version>2.1.0-SNAPSHOT</version>
|
||||
|
||||
<name>Kafka Streams :: Quickstart</name>
|
||||
|
||||
|
@ -118,4 +118,4 @@
|
|||
</resource>
|
||||
</resources>
|
||||
</build>
|
||||
</project>
|
||||
</project>
|
||||
|
|
|
@ -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.0.0.dev0'
|
||||
__version__ = '2.1.0.dev0'
|
||||
|
|
Loading…
Reference in New Issue