Skip to content

Commit

Permalink
Update for 7.1.0 release (#184)
Browse files Browse the repository at this point in the history
Bump version numbers
  • Loading branch information
Christina-Kang committed Feb 21, 2019
1 parent d6afc92 commit 0b89536
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To get started, after installation run the following:
Change Log
==========

Unreleased
7.1.0
----------
- Improve help text on cluster select (#173)
- Add events commands (sfctl events) to retrieve events through EventStore service if installed (#174)
Expand Down
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def read(fname):

setup(
name='sfctl',
version='7.0.3',
version='7.1.0',
description='Azure Service Fabric command line',
long_description=read('README.rst'),
url='https://github.com/Azure/service-fabric-cli',
Expand Down
2 changes: 1 addition & 1 deletion src/sfctl/custom_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def sfctl_cluster_version_matches(cluster_version, sfctl_version):
:return: True if they are a match. False otherwise.
"""

if sfctl_version in ['7.0.0', '7.0.1', '7.0.2', '7.0.3']:
if sfctl_version in ['7.0.0', '7.0.1', '7.0.2', '7.1.0']:

return cluster_version.startswith('6.4')

Expand Down
2 changes: 1 addition & 1 deletion src/sfctl/tests/version_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def test_valid_current_version(self):
note: this will require changing the sfctl_version on releases
"""
sfctl_version = '7.0.3'
sfctl_version = '7.1.0'

pipe = Popen('sfctl --version', shell=True, stdout=PIPE, stderr=PIPE)
# returned_string and err are returned as bytes
Expand Down

0 comments on commit 0b89536

Please sign in to comment.