You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ew...@apache.org on 2016/02/05 22:45:10 UTC

kafka git commit: MINOR: Updated kafkatest version to match version specified in gradle.properties

Repository: kafka
Updated Branches:
  refs/heads/0.9.0 8abbf95e9 -> 656b5f6a8


MINOR: Updated kafkatest version to match version specified in gradle.properties

This discrepancy was causing a few system tests which to some version validation to fail consistently on 0.9.0 branch. Namely:
```
Module: kafkatest.sanity_checks.test_verifiable_producer
Class:  TestVerifiableProducer
Method: test_simple_run
Arguments:
{
  "producer_version": "0.8.2.2"
}

Module: kafkatest.sanity_checks.test_verifiable_producer
Class:  TestVerifiableProducer
Method: test_simple_run
Arguments:
{
  "producer_version": "trunk"
}

Module: kafkatest.sanity_checks.test_kafka_version
Class:  KafkaVersionTest
Method: test_multi_version
```

Author: Geoff Anderson <ge...@confluent.io>

Reviewers: Ismael Juma <is...@juma.me.uk>, Ewen Cheslack-Postava <ew...@confluent.io>

Closes #878 from granders/increment-kafkatest-version-0.9.0


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/656b5f6a
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/656b5f6a
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/656b5f6a

Branch: refs/heads/0.9.0
Commit: 656b5f6a8133552580b58ede0f3de74550d5e9b9
Parents: 8abbf95
Author: Geoff Anderson <ge...@confluent.io>
Authored: Fri Feb 5 13:44:57 2016 -0800
Committer: Ewen Cheslack-Postava <me...@ewencp.org>
Committed: Fri Feb 5 13:44:57 2016 -0800

----------------------------------------------------------------------
 tests/kafkatest/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/656b5f6a/tests/kafkatest/__init__.py
----------------------------------------------------------------------
diff --git a/tests/kafkatest/__init__.py b/tests/kafkatest/__init__.py
index e346811..b25c480 100644
--- a/tests/kafkatest/__init__.py
+++ b/tests/kafkatest/__init__.py
@@ -23,4 +23,4 @@
 # 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"
-__version__ = '0.9.0.0.dev0'
+__version__ = '0.9.0.1.dev0'