diff --git a/Makefile b/Makefile index 4a6951fb9..d5ad67062 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ SHA1 := $$(git log -1 --pretty=%h) CURRENT_BRANCH := $$(git symbolic-ref -q --short HEAD) LATEST_TAG := ${REPO_NAME}:latest GIT_TAG := ${REPO_NAME}:${SHA1} -VERSION := v0.3.4 +VERSION := v0.3.5 info: ## Show information about the current git state. @echo "Github Project: https://github.com/${REPO_NAME}\nCurrent Branch: ${CURRENT_BRANCH}\nSHA1: ${SHA1}\n" diff --git a/cloudendure/__version__.py b/cloudendure/__version__.py index 334b89956..a8d4557d2 100644 --- a/cloudendure/__version__.py +++ b/cloudendure/__version__.py @@ -1 +1 @@ -__version__ = "0.3.4" +__version__ = "0.3.5" diff --git a/cloudendure/cloudendure.py b/cloudendure/cloudendure.py index aae67e632..c872c94f3 100644 --- a/cloudendure/cloudendure.py +++ b/cloudendure/cloudendure.py @@ -508,7 +508,11 @@ def _inspector(self, **kwargs): ) def _not_synced(self, machine) -> bool: - if machine["backlogged_storage_bytes"] > 0 or machine["rescanned_storage_bytes"] > 0: + if ( + machine["backlogged_storage_bytes"] > 0 + or machine["rescanned_storage_bytes"] > 0 + or machine["replicated_storage_bytes"] != machine["total_storage_bytes"] + ): return True else: return False diff --git a/pyproject.toml b/pyproject.toml index 34cf7d322..f3053cfbc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cloudendure" -version = "0.3.4" +version = "0.3.5" description = "Python wrapper and CLI for CloudEndure" authors = ["Mark Beacom ", "Tom Warnock "] maintainers = ["Evan Lucchesi ", "Nick Selpa "]