You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gu...@apache.org on 2018/07/21 00:46:45 UTC

[kafka] branch 1.1 updated: MINOR: increase dev version from 1.1.1-SNAPSHOT to 1.1.2-SNAPSHOT (#5409)

This is an automated email from the ASF dual-hosted git repository.

guozhang pushed a commit to branch 1.1
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/1.1 by this push:
     new 1582829  MINOR: increase dev version from 1.1.1-SNAPSHOT to 1.1.2-SNAPSHOT (#5409)
1582829 is described below

commit 1582829a62bdb1a61c83120984ec2c51d7ed94e8
Author: Bill Bejeck <bb...@gmail.com>
AuthorDate: Fri Jul 20 20:46:40 2018 -0400

    MINOR: increase dev version from 1.1.1-SNAPSHOT to 1.1.2-SNAPSHOT (#5409)
    
    Reviewers: Guozhang Wang <wa...@gmail.com>
---
 tests/kafkatest/version.py | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/tests/kafkatest/version.py b/tests/kafkatest/version.py
index ee3f8b5..8c327c2 100644
--- a/tests/kafkatest/version.py
+++ b/tests/kafkatest/version.py
@@ -14,9 +14,8 @@
 # limitations under the License.
 
 
-from kafkatest.utils import kafkatest_version
-
 from distutils.version import LooseVersion
+from kafkatest.utils import kafkatest_version
 
 
 class KafkaVersion(LooseVersion):
@@ -61,7 +60,7 @@ def get_version(node=None):
         return DEV_BRANCH
 
 DEV_BRANCH = KafkaVersion("dev")
-DEV_VERSION = KafkaVersion("1.1.1-SNAPSHOT")
+DEV_VERSION = KafkaVersion("1.1.2-SNAPSHOT")
 
 # 0.8.2.X versions
 V_0_8_2_1 = KafkaVersion("0.8.2.1")