diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 93332bf8..609cf2d6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,18 @@ Changelog ========= +3.3.9 (2019-01-07) +------------------ + +* Improved DNS lookup check + + +3.3.8 (2018-08-14) +------------------ + +* Ensure 'stage' argument sanity +* Use a wrapper function to determine the available environments + 3.3.7 (2018-02-28) ------------------ diff --git a/divio_cli/__init__.py b/divio_cli/__init__.py index 158a549e..80771050 100644 --- a/divio_cli/__init__.py +++ b/divio_cli/__init__.py @@ -1 +1 @@ -__version__ = "3.3.8" +__version__ = "3.3.9" diff --git a/divio_cli/check_system.py b/divio_cli/check_system.py index a11ae6de..e2ef7d59 100644 --- a/divio_cli/check_system.py +++ b/divio_cli/check_system.py @@ -177,7 +177,7 @@ class DockerEngineDNSCheck(DockerEngineBaseCheck): "busybox", "sh", "-c", # run in new a shell to avoid problems with timeout - "timeout -t 5 nslookup control.divio.com", + "timeout -t 5 nslookup -type=a control.divio.com.", ) def fmt_exception(self, exc):