mirror of https://github.com/apache/kafka.git
Bump up version to 1.1.0-SNAPSHOT
This commit is contained in:
parent
5792f2fb3d
commit
6bcbd17d34
|
@ -16,7 +16,7 @@
|
||||||
group=org.apache.kafka
|
group=org.apache.kafka
|
||||||
# NOTE: When you change this version number, you should also make sure to update
|
# 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.
|
# the version numbers in tests/kafkatest/__init__.py and kafka-merge-pr.py.
|
||||||
version=1.0.0-SNAPSHOT
|
version=1.1.0-SNAPSHOT
|
||||||
scalaVersion=2.11.11
|
scalaVersion=2.11.11
|
||||||
task=build
|
task=build
|
||||||
org.gradle.jvmargs=-XX:MaxPermSize=512m -Xmx1024m -Xss2m
|
org.gradle.jvmargs=-XX:MaxPermSize=512m -Xmx1024m -Xss2m
|
||||||
|
|
|
@ -72,7 +72,7 @@ RELEASE_BRANCH_PREFIX = "0."
|
||||||
|
|
||||||
DEV_BRANCH_NAME = "trunk"
|
DEV_BRANCH_NAME = "trunk"
|
||||||
|
|
||||||
DEFAULT_FIX_VERSION = os.environ.get("DEFAULT_FIX_VERSION", "1.0.0")
|
DEFAULT_FIX_VERSION = os.environ.get("DEFAULT_FIX_VERSION", "1.1.0")
|
||||||
|
|
||||||
def get_json(url):
|
def get_json(url):
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.kafka</groupId>
|
<groupId>org.apache.kafka</groupId>
|
||||||
<artifactId>streams-quickstart</artifactId>
|
<artifactId>streams-quickstart</artifactId>
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
<version>1.1.0-SNAPSHOT</version>
|
||||||
<relativePath>..</relativePath>
|
<relativePath>..</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<kafka.version>1.0.0-SNAPSHOT</kafka.version>
|
<kafka.version>1.1.0-SNAPSHOT</kafka.version>
|
||||||
<slf4j.version>1.7.7</slf4j.version>
|
<slf4j.version>1.7.7</slf4j.version>
|
||||||
<log4j.version>1.2.17</log4j.version>
|
<log4j.version>1.2.17</log4j.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
<groupId>org.apache.kafka</groupId>
|
<groupId>org.apache.kafka</groupId>
|
||||||
<artifactId>streams-quickstart</artifactId>
|
<artifactId>streams-quickstart</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
<version>1.1.0-SNAPSHOT</version>
|
||||||
|
|
||||||
<name>Kafka Streams :: Quickstart</name>
|
<name>Kafka Streams :: Quickstart</name>
|
||||||
|
|
||||||
|
|
|
@ -22,4 +22,4 @@
|
||||||
# Instead, in development branches, the version should have a suffix of the form ".devN"
|
# 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"
|
# For example, when Kafka is at version 1.0.0-SNAPSHOT, this should be something like "1.0.0.dev0"
|
||||||
__version__ = '1.0.0.dev0'
|
__version__ = '1.1.0.dev0'
|
||||||
|
|
Loading…
Reference in New Issue