Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for 7.1.0 release #184

Merged
merged 2 commits into from
Feb 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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