Skip to content

Commit ef93af7

Browse files
committed
Update status return response to true if valid, bump version
1 parent ffd54e0 commit ef93af7

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SHA1 := $$(git log -1 --pretty=%h)
88
CURRENT_BRANCH := $$(git symbolic-ref -q --short HEAD)
99
LATEST_TAG := ${REPO_NAME}:latest
1010
GIT_TAG := ${REPO_NAME}:${SHA1}
11-
VERSION := v0.1.5
11+
VERSION := v0.1.7
1212

1313
info: ## Show information about the current git state.
1414
@echo "Github Project: https://github.com/${REPO_NAME}\nCurrent Branch: ${CURRENT_BRANCH}\nSHA1: ${SHA1}\n"

cloudendure/cloudendure.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -688,6 +688,7 @@ def status(self) -> bool:
688688
else:
689689
print("ERROR: some machines in the targeted pool are not ready")
690690
return False
691+
return True
691692

692693
def execute(self) -> bool:
693694
"""Start the migration project my checking and launching the migration wave."""

docs/API_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
44

55
- API version: `5`
6-
- Package version: `0.1.6`
6+
- Package version: `0.1.7`
77
- Build package: `io.swagger.codegen.v3.generators.python.PythonClientCodegen`
88

99
## Requirements

reference/swagger_config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"packageName": "cloudendure_api",
33
"projectName": "cloudendure_api",
4-
"packageVersion": "0.1.6",
4+
"packageVersion": "0.1.7",
55
"packageUrl": "https://github.com/2ndWatch/cloudendure-python"
66
}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2424
AUTHOR: str = "Mark Beacom, Tom Warnock"
2525
REQUIRES_PYTHON: str = ">=3.7.0"
26-
VERSION: str = "0.1.6"
26+
VERSION: str = "0.1.7"
2727

2828
REQUIRED: List[str] = ["requests", "boto3", "fire"]
2929
EXTRAS: Dict[str, List[str]] = {

0 commit comments

Comments
 (0)