KAFKA-3277; Update trunk version to be 0.10.0.0-SNAPSHOT

Also update `kafka-merge-pr.py` and `tests/kafkatest/__init__.py`.

Author: Ismael Juma <ismael@juma.me.uk>

Reviewers: Ewen Cheslack-Postava <ewen@confluent.io>

Closes #963 from ijuma/update-trunk-0.10.0.0-SNAPSHOT
This commit is contained in:
Ismael Juma 2016-02-24 09:21:38 -08:00 committed by Ewen Cheslack-Postava
parent f7d019ed40
commit b084c485e2
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@
# limitations under the License. # limitations under the License.
group=org.apache.kafka group=org.apache.kafka
version=0.9.1.0-SNAPSHOT version=0.10.0.0-SNAPSHOT
scalaVersion=2.10.6 scalaVersion=2.10.6
task=build task=build
org.gradle.jvmargs=-XX:MaxPermSize=512m -Xmx1024m -Xss2m org.gradle.jvmargs=-XX:MaxPermSize=512m -Xmx1024m -Xss2m

View File

@ -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", "0.9.1.0") DEFAULT_FIX_VERSION = os.environ.get("DEFAULT_FIX_VERSION", "0.10.0.0")
def get_json(url): def get_json(url):
try: try:

View File

@ -23,4 +23,4 @@
# Instead, in trunk, the version should have a suffix of the form ".devN" # Instead, in trunk, the version should have a suffix of the form ".devN"
# #
# For example, when Kafka is at version 0.9.0.0-SNAPSHOT, this should be something like "0.9.0.0.dev0" # For example, when Kafka is at version 0.9.0.0-SNAPSHOT, this should be something like "0.9.0.0.dev0"
__version__ = '0.9.1.0.dev0' __version__ = '0.10.0.0.dev0'