Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions tests/kafkatest/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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")
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

\cc @lindong28 -- seem's you forgot to update this when dumping the version in 1.1 branch.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mjsax Ah my bad. Thanks for letting me know. I will take care next time.

I just looked through the release process again and realized that I also forgot to update the version in kafka-merge-pr.py. Can you review #5413?

I also slightly updated release process in https://cwiki.apache.org/confluence/pages/diffpagesbyversion.action?pageId=34840886&selectedPageVersions=139&selectedPageVersions=140.


# 0.8.2.X versions
V_0_8_2_1 = KafkaVersion("0.8.2.1")
Expand Down